summary refs log tree commit diff
path: root/pkgs/development/libraries/vapoursynth
diff options
context:
space:
mode:
authorrnhmjoj <micheleguerinirocco@me.com>2016-08-27 05:36:45 +0200
committerrnhmjoj <micheleguerinirocco@me.com>2016-09-04 22:25:52 +0200
commit347fcb6a841f7e07cb8a3c9a31a35d6d9fa51ed2 (patch)
tree918ac44c4dafabb42e31d2b15ac4e883b4ec1f87 /pkgs/development/libraries/vapoursynth
parent735bbda892547d46315cfc7e4af5ebaa30117f06 (diff)
downloadnixpkgs-347fcb6a841f7e07cb8a3c9a31a35d6d9fa51ed2.tar
nixpkgs-347fcb6a841f7e07cb8a3c9a31a35d6d9fa51ed2.tar.gz
nixpkgs-347fcb6a841f7e07cb8a3c9a31a35d6d9fa51ed2.tar.bz2
nixpkgs-347fcb6a841f7e07cb8a3c9a31a35d6d9fa51ed2.tar.lz
nixpkgs-347fcb6a841f7e07cb8a3c9a31a35d6d9fa51ed2.tar.xz
nixpkgs-347fcb6a841f7e07cb8a3c9a31a35d6d9fa51ed2.tar.zst
nixpkgs-347fcb6a841f7e07cb8a3c9a31a35d6d9fa51ed2.zip
vapoursynth: init at R33.1
Diffstat (limited to 'pkgs/development/libraries/vapoursynth')
-rw-r--r--pkgs/development/libraries/vapoursynth/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/development/libraries/vapoursynth/default.nix b/pkgs/development/libraries/vapoursynth/default.nix
new file mode 100644
index 00000000000..12cba8decc7
--- /dev/null
+++ b/pkgs/development/libraries/vapoursynth/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook,
+  glibc, zimg, imagemagick, libass, tesseract, yasm,
+  python3
+}:
+
+stdenv.mkDerivation rec {
+  name = "vapoursynth-${version}";
+  version = "R33.1";
+
+  src = fetchFromGitHub {
+    owner = "vapoursynth";
+    repo  = "vapoursynth";
+    rev    = "0d69d29abb3c4ba9e806958bf9c539bd6eff6852";
+    sha256 = "1dbz81vgqfsb306d7891p8y25y7632y32ii3l64shr0jsq64vgsm";
+  };
+
+  buildInputs = [
+    pkgconfig autoreconfHook
+    zimg imagemagick libass glibc tesseract yasm
+    (python3.withPackages (ps: with ps; [ sphinx cython ]))
+  ];
+
+  configureFlags = [
+    "--enable-imwri"
+    "--disable-static"
+  ];
+
+  meta = with stdenv.lib; {
+    description = "A video processing framework with the future in mind";
+    homepage = http://www.vapoursynth.com/;
+    license   = licenses.lgpl21;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ rnhmjoj ];
+  };
+
+}