nixpkgs/pkgs/applications/video/jftui/default.nix

42 lines
716 B
Nix
Raw Normal View History

2020-05-05 23:52:20 +00:00
{ stdenv
, fetchFromGitHub
, pkg-config
, curl
, mpv
, yajl
}:
2020-02-16 15:52:24 +00:00
stdenv.mkDerivation rec {
pname = "jftui";
2020-05-05 23:52:20 +00:00
version = "0.3.0";
2020-02-16 15:52:24 +00:00
src = fetchFromGitHub {
owner = "Aanok";
repo = pname;
rev = "v${version}";
2020-05-05 23:52:20 +00:00
sha256 = "1az737q5i24ylvkx4g3xlq8k48ni91nz5hhbif97g4nlhwl5cqb6";
2020-02-16 15:52:24 +00:00
};
nativeBuildInputs = [
pkg-config
];
buildInputs = [
curl
mpv
yajl
];
installPhase = ''
install -Dm555 build/jftui $out/bin/jftui
'';
meta = with stdenv.lib; {
description = "Jellyfin Terminal User Interface ";
homepage = "https://github.com/Aanok/jftui";
license = licenses.unlicense;
maintainers = [ maintainers.nyanloutre ];
platforms = platforms.linux;
};
}