vapoursynth: reduce with usage

main
Sandro Jäckel 2 years ago
parent 9d15d4620b
commit 32a1b56a74
No known key found for this signature in database
GPG Key ID: B1763F8651144063
  1. 5
      pkgs/development/libraries/vapoursynth/default.nix

@ -4,8 +4,6 @@
, ApplicationServices
}:
with lib;
stdenv.mkDerivation rec {
pname = "vapoursynth";
version = "R58";
@ -25,7 +23,7 @@ stdenv.mkDerivation rec {
buildInputs = [
zimg libass
(python3.withPackages (ps: with ps; [ sphinx cython ]))
] ++ optionals stdenv.isDarwin [ libiconv ApplicationServices ];
] ++ lib.optionals stdenv.isDarwin [ libiconv ApplicationServices ];
enableParallelBuilding = true;
@ -58,5 +56,4 @@ stdenv.mkDerivation rec {
platforms = platforms.x86_64;
maintainers = with maintainers; [ rnhmjoj sbruder tadeokondrak ];
};
}

Loading…
Cancel
Save