Skip to content

Commit

Permalink
Changed made to the format
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishik-Y authored Dec 19, 2024
1 parent 3bf8796 commit 5452c47
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions pkgs/applications/video/ani-cli/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,21 @@ stdenvNoCC.mkDerivation rec {
};

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;
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
Expand Down

0 comments on commit 5452c47

Please sign in to comment.