summary refs log tree commit diff
path: root/pkgs/development/libraries/vapoursynth
diff options
context:
space:
mode:
authorGabriel Ebner <gebner@gebner.org>2018-07-03 17:03:12 +0200
committerGabriel Ebner <gebner@gebner.org>2018-07-03 17:03:12 +0200
commitad611a622374b3a2202684eda61e3f3207e5d3e1 (patch)
tree2435cff32de76d3dbbba3f2a11dc20de0703861b /pkgs/development/libraries/vapoursynth
parent1fd06532949e2a7001df1ab66c14f59da99403b2 (diff)
downloadnixpkgs-ad611a622374b3a2202684eda61e3f3207e5d3e1.tar
nixpkgs-ad611a622374b3a2202684eda61e3f3207e5d3e1.tar.gz
nixpkgs-ad611a622374b3a2202684eda61e3f3207e5d3e1.tar.bz2
nixpkgs-ad611a622374b3a2202684eda61e3f3207e5d3e1.tar.lz
nixpkgs-ad611a622374b3a2202684eda61e3f3207e5d3e1.tar.xz
nixpkgs-ad611a622374b3a2202684eda61e3f3207e5d3e1.tar.zst
nixpkgs-ad611a622374b3a2202684eda61e3f3207e5d3e1.zip
vapoursynth: fix build
Diffstat (limited to 'pkgs/development/libraries/vapoursynth')
-rw-r--r--pkgs/development/libraries/vapoursynth/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/vapoursynth/default.nix b/pkgs/development/libraries/vapoursynth/default.nix
index e45337c8cf5..dfef13d6763 100644
--- a/pkgs/development/libraries/vapoursynth/default.nix
+++ b/pkgs/development/libraries/vapoursynth/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
 , zimg, libass, python3, libiconv
-, ApplicationServices, nasm
+, ApplicationServices, nasm, x265
 , ocrSupport ?  false, tesseract ? null
 , imwriSupport? true,  imagemagick7 ? null
 }:
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
     (python3.withPackages (ps: with ps; [ sphinx cython ]))
   ] ++ optionals stdenv.isDarwin [ libiconv ApplicationServices ]
     ++ optional ocrSupport   tesseract
-    ++ optional imwriSupport imagemagick7;
+    ++ optionals imwriSupport [ imagemagick7 x265 ];
 
   configureFlags = [
     "--disable-static"