vapoursynth: reduce with usage

This commit is contained in:
Sandro Jäckel
2022-04-26 14:43:51 +02:00
parent 9d15d4620b
commit 32a1b56a74
@@ -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 ];
};
}