diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 98a9caf1e9f13..08c471f1c0835 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -8461,6 +8461,11 @@ githubId = 60962839; name = "Mazen Zahr"; }; + GKHWB = { + github = "GKHWB"; + githubId = 68881230; + name = "GKHWB"; + }; gkleen = { name = "Gregor Kleen"; email = "xpnfr@bouncy.email"; diff --git a/pkgs/by-name/je/jellyfin-tui/package.nix b/pkgs/by-name/je/jellyfin-tui/package.nix new file mode 100644 index 0000000000000..eab4b3bcccddb --- /dev/null +++ b/pkgs/by-name/je/jellyfin-tui/package.nix @@ -0,0 +1,38 @@ +{ + lib, + fetchFromGitHub, + rustPlatform, + pkg-config, + openssl, + mpv, + nix-update-script, +}: + +rustPlatform.buildRustPackage rec { + pname = "jellyfin-tui"; + version = "1.0.5"; + + src = fetchFromGitHub { + owner = "dhonus"; + repo = "jellyfin-tui"; + tag = "v${version}"; + hash = "sha256-dME3oM3k5TGjN8S/93Crt3vw8+KjZWivkVzg+eqwfe4="; + }; + + cargoHash = "sha256-DFwEcKPc5c+xYas/gI3dHGRW8r4B8GBRXiI9VjdMrpw="; + + nativeBuildInputs = [ pkg-config ]; + buildInputs = [ + openssl + mpv + ]; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "Jellyfin music streaming client for the terminal"; + homepage = "https://github.com/dhonus/jellyfin-tui"; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ GKHWB ]; + }; +}