From ad611a622374b3a2202684eda61e3f3207e5d3e1 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Tue, 3 Jul 2018 17:03:12 +0200 Subject: [PATCH] vapoursynth: fix build --- pkgs/development/libraries/vapoursynth/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/vapoursynth/default.nix b/pkgs/development/libraries/vapoursynth/default.nix index e45337c8cf5d..dfef13d67637 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"