summary refs log tree commit diff
path: root/pkgs/development/libraries/vapoursynth/default.nix
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2018-02-27 11:32:55 +0100
committerrnhmjoj <rnhmjoj@inventati.org>2018-03-05 20:58:47 +0100
commit03de6bd3819fe4a20322c049dc4f9864950c405f (patch)
tree3b3a897c4235226c518e3a1399e69768170d885b /pkgs/development/libraries/vapoursynth/default.nix
parentb98e1601ddb7fed04245e49faa5aa4add33cd3d1 (diff)
downloadnixpkgs-03de6bd3819fe4a20322c049dc4f9864950c405f.tar
nixpkgs-03de6bd3819fe4a20322c049dc4f9864950c405f.tar.gz
nixpkgs-03de6bd3819fe4a20322c049dc4f9864950c405f.tar.bz2
nixpkgs-03de6bd3819fe4a20322c049dc4f9864950c405f.tar.lz
nixpkgs-03de6bd3819fe4a20322c049dc4f9864950c405f.tar.xz
nixpkgs-03de6bd3819fe4a20322c049dc4f9864950c405f.tar.zst
nixpkgs-03de6bd3819fe4a20322c049dc4f9864950c405f.zip
vapoursynth: R40 -> R43
Diffstat (limited to 'pkgs/development/libraries/vapoursynth/default.nix')
-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 24c4a50d874..e45337c8cf5 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 ];
   };