summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorlewo <lewo@abesis.fr>2018-03-05 21:16:13 +0100
committerGitHub <noreply@github.com>2018-03-05 21:16:13 +0100
commit53554bd9f7751081b45d5ad12dc593a906deecc4 (patch)
treea1b73fc2e62b988ba135adf3245a6a983a2af125 /pkgs/development
parent7e968a47cd4383919ac1fdf4b675024787506c8c (diff)
parent03de6bd3819fe4a20322c049dc4f9864950c405f (diff)
downloadnixlib-53554bd9f7751081b45d5ad12dc593a906deecc4.tar
nixlib-53554bd9f7751081b45d5ad12dc593a906deecc4.tar.gz
nixlib-53554bd9f7751081b45d5ad12dc593a906deecc4.tar.bz2
nixlib-53554bd9f7751081b45d5ad12dc593a906deecc4.tar.lz
nixlib-53554bd9f7751081b45d5ad12dc593a906deecc4.tar.xz
nixlib-53554bd9f7751081b45d5ad12dc593a906deecc4.tar.zst
nixlib-53554bd9f7751081b45d5ad12dc593a906deecc4.zip
Merge pull request #35882 from rnhmjoj/vapoursynth
Update VapourSynth
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/vapoursynth/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/vapoursynth/default.nix b/pkgs/development/libraries/vapoursynth/default.nix
index 24c4a50d874b..e45337c8cf5d 100644
--- a/pkgs/development/libraries/vapoursynth/default.nix
+++ b/pkgs/development/libraries/vapoursynth/default.nix
@@ -1,8 +1,8 @@
 { stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
 , zimg, libass, python3, libiconv
 , ApplicationServices, nasm
-, ocrSupport ?  false, tesseract
-, imwriSupport? true,  imagemagick7
+, ocrSupport ?  false, tesseract ? null
+, imwriSupport? true,  imagemagick7 ? null
 }:
 
 assert ocrSupport   -> tesseract != null;
@@ -12,13 +12,13 @@ with stdenv.lib;
 
 stdenv.mkDerivation rec {
   name = "vapoursynth-${version}";
-  version = "R40";
+  version = "R43";
 
   src = fetchFromGitHub {
     owner  = "vapoursynth";
     repo   = "vapoursynth";
     rev    = version;
-    sha256 = "1ycc3fdhhryp7hap80z3qmh89br31kcswzp8ai3wlc07zfvcrfck";
+    sha256 = "01yzxggjxr6fz3wj81z6vgp9m4jqddyk73i22kz2x620cpdgb9j9";
   };
 
   nativeBuildInputs = [ pkgconfig autoreconfHook nasm ];
@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
     description = "A video processing framework with the future in mind";
     homepage    = http://www.vapoursynth.com/;
     license     = licenses.lgpl21;
-    platforms   = platforms.unix;
+    platforms   = platforms.x86_64;
     maintainers = with maintainers; [ rnhmjoj ];
   };