mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 10:24:07 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
64 lines
1.3 KiB
Nix
64 lines
1.3 KiB
Nix
{ fetchFromGitHub
|
|
, makeWrapper
|
|
, stdenvNoCC
|
|
, lib
|
|
, gnugrep
|
|
, gnused
|
|
, curl
|
|
, catt
|
|
, syncplay
|
|
, ffmpeg
|
|
, fzf
|
|
, aria2
|
|
, withMpv ? true, mpv
|
|
, withVlc ? false, vlc
|
|
, withIina ? false, iina
|
|
, chromecastSupport ? false
|
|
, syncSupport ? false
|
|
}:
|
|
|
|
assert withMpv || withVlc || withIina;
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "ani-cli";
|
|
version = "4.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pystardust";
|
|
repo = "ani-cli";
|
|
rev = "v${version}";
|
|
hash = "sha256-7zuepWTtrFp9RW3zTSjPzyJ9e+09PdKgwcnV+DqPEUY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
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;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm755 ani-cli $out/bin/ani-cli
|
|
|
|
wrapProgram $out/bin/ani-cli \
|
|
--prefix PATH : ${lib.makeBinPath runtimeDependencies}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/pystardust/ani-cli";
|
|
description = "Cli tool to browse and play anime";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ skykanin ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "ani-cli";
|
|
};
|
|
}
|