about summary refs log tree commit diff
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2020-04-16 19:32:35 +0200
committerrnhmjoj <rnhmjoj@inventati.org>2020-04-17 08:51:55 +0200
commitc339130b803f4cf22f08ff411dbd9875a95fd28a (patch)
tree0a8a1b3ac377912b749c4e60582fc3a3504c36c0
parentda232ea49760e2a08e9d2ec9d1f7b30e9e06c561 (diff)
downloadnixlib-c339130b803f4cf22f08ff411dbd9875a95fd28a.tar
nixlib-c339130b803f4cf22f08ff411dbd9875a95fd28a.tar.gz
nixlib-c339130b803f4cf22f08ff411dbd9875a95fd28a.tar.bz2
nixlib-c339130b803f4cf22f08ff411dbd9875a95fd28a.tar.lz
nixlib-c339130b803f4cf22f08ff411dbd9875a95fd28a.tar.xz
nixlib-c339130b803f4cf22f08ff411dbd9875a95fd28a.tar.zst
nixlib-c339130b803f4cf22f08ff411dbd9875a95fd28a.zip
vapoursynth: R48 -> R49
-rw-r--r--pkgs/development/libraries/vapoursynth/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/vapoursynth/default.nix b/pkgs/development/libraries/vapoursynth/default.nix
index 46c97e0dae97..043bfb007a3d 100644
--- a/pkgs/development/libraries/vapoursynth/default.nix
+++ b/pkgs/development/libraries/vapoursynth/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, makeWrapper
 , zimg, libass, python3, libiconv
-, ApplicationServices, nasm
+, ApplicationServices
 , ocrSupport ?  false, tesseract ? null
 , imwriSupport? true,  imagemagick7 ? null
 }:
@@ -12,16 +12,16 @@ with stdenv.lib;
 
 stdenv.mkDerivation rec {
   pname = "vapoursynth";
-  version = "R48";
+  version = "R49";
 
   src = fetchFromGitHub {
     owner  = "vapoursynth";
     repo   = "vapoursynth";
     rev    = version;
-    sha256 = "1i6163bidlp0p9zcnxpsphr44ayfzd51fig4ri7vbrbl9lw9jaih";
+    sha256 = "1d298mlb24nlc2x7pixfbkd0qbpv4c706c32idsgpi96z1spkhvl";
   };
 
-  nativeBuildInputs = [ pkgconfig autoreconfHook nasm makeWrapper ];
+  nativeBuildInputs = [ pkgconfig autoreconfHook makeWrapper ];
   buildInputs = [
     zimg libass
     (python3.withPackages (ps: with ps; [ sphinx cython ]))