ostui: init at 1.0.4 (#440684)

This commit is contained in:
Alexis Hildebrandt
2025-09-16 20:34:28 +00:00
committed by GitHub
2 changed files with 56 additions and 0 deletions
+6
View File
@@ -15361,6 +15361,12 @@
github = "M0NsTeRRR";
githubId = 37785089;
};
m0streng0 = {
name = "Henrique Oliveira";
email = "ho.henrique@proton.me";
github = "M0streng0";
githubId = 85799811;
};
m0ustache3 = {
name = "M0ustach3";
github = "M0ustach3";
+50
View File
@@ -0,0 +1,50 @@
{
lib,
buildGoModule,
fetchFromSourcehut,
pkg-config,
mpv-unwrapped,
stdenv,
}:
buildGoModule (finalAttrs: {
pname = "ostui";
version = "1.0.4";
src = fetchFromSourcehut {
owner = "~ser";
repo = "ostui";
rev = "v${finalAttrs.version}";
hash = "sha256-efX19jkJnXyO4iuY2EZqhtLJZ7R/Q2JQZf72gyLgY8k=";
};
vendorHash = "sha256-Vmjd0bbeR9+PZCjh1cczE5MWeH5PDVE6obJLmV0wCLQ=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
mpv-unwrapped
];
ldflags = [
"-s"
"-w"
"-X main.Version=${finalAttrs.version}"
];
env = {
CGO_ENABLED = "1";
};
doCheck = !stdenv.hostPlatform.isDarwin;
meta = {
homepage = "https://git.sr.ht/~ser/ostui";
description = "Terminal client for *sonic music servers, inspired by ncmpcpp and musickube";
license = lib.licenses.gpl3Only;
platforms = lib.platforms.linux ++ lib.platforms.darwin;
mainProgram = "ostui";
maintainers = with lib.maintainers; [ m0streng0 ];
};
})