2022-03-10 23:05:08 +03:00
|
|
|
{ fetchFromGitHub
|
|
|
|
, makeWrapper
|
|
|
|
, stdenvNoCC
|
|
|
|
, lib
|
|
|
|
, gnugrep
|
|
|
|
, gnused
|
2023-08-13 22:33:57 +03:00
|
|
|
, curl
|
|
|
|
, catt
|
|
|
|
, syncplay
|
|
|
|
, ffmpeg
|
2023-01-31 00:20:28 +03:00
|
|
|
, fzf
|
2022-03-10 23:05:08 +03:00
|
|
|
, aria2
|
2023-08-13 22:33:57 +03:00
|
|
|
, withMpv ? true, mpv
|
|
|
|
, withVlc ? false, vlc
|
|
|
|
, withIina ? false, iina
|
|
|
|
, chromecastSupport ? false
|
|
|
|
, syncSupport ? false
|
2022-03-10 23:05:08 +03:00
|
|
|
}:
|
|
|
|
|
2023-08-13 22:33:57 +03:00
|
|
|
assert withMpv || withVlc || withIina;
|
|
|
|
|
2022-03-10 23:05:08 +03:00
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
|
|
pname = "ani-cli";
|
2023-08-13 22:33:57 +03:00
|
|
|
version = "4.6";
|
2022-03-10 23:05:08 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pystardust";
|
|
|
|
repo = "ani-cli";
|
|
|
|
rev = "v${version}";
|
2023-08-13 22:33:57 +03:00
|
|
|
hash = "sha256-ahyCD4QsYyb3xtNK03HITeF0+hJFIHZ+PAjisuS/Kdo=";
|
2022-03-10 23:05:08 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2023-08-13 22:33:57 +03:00
|
|
|
runtimeDependencies =
|
|
|
|
let player = []
|
|
|
|
++ lib.optional withMpv mpv
|
|
|
|
++ lib.optional withVlc vlc
|
|
|
|
++ lib.optional withIina iina;
|
|
|
|
in [ gnugrep gnused curl fzf ffmpeg aria2 ]
|
|
|
|
++ player
|
|
|
|
++ lib.optional chromecastSupport catt
|
|
|
|
++ lib.optional syncSupport syncplay;
|
2022-03-10 23:05:08 +03:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
install -Dm755 ani-cli $out/bin/ani-cli
|
|
|
|
|
|
|
|
wrapProgram $out/bin/ani-cli \
|
2023-08-13 22:33:57 +03:00
|
|
|
--prefix PATH : ${lib.makeBinPath runtimeDependencies}
|
2022-03-10 23:05:08 +03:00
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/pystardust/ani-cli";
|
|
|
|
description = "A cli tool to browse and play anime";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ skykanin ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|