summary refs log tree commit diff
path: root/pkgs/applications/video/avxsynth
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2013-04-10 15:12:02 +0200
committerLluís Batlle i Rossell <viric@viric.name>2013-04-10 15:12:37 +0200
commitd8f98d1a8542bade5c342f0029ad6c58e65d4de2 (patch)
treea45ce14866ae7bb02d420bc64f3d352a3fe08b1e /pkgs/applications/video/avxsynth
parent11095b618366c68d3fbde6ce208b823e1a07fe58 (diff)
downloadnixpkgs-d8f98d1a8542bade5c342f0029ad6c58e65d4de2.tar
nixpkgs-d8f98d1a8542bade5c342f0029ad6c58e65d4de2.tar.gz
nixpkgs-d8f98d1a8542bade5c342f0029ad6c58e65d4de2.tar.bz2
nixpkgs-d8f98d1a8542bade5c342f0029ad6c58e65d4de2.tar.lz
nixpkgs-d8f98d1a8542bade5c342f0029ad6c58e65d4de2.tar.xz
nixpkgs-d8f98d1a8542bade5c342f0029ad6c58e65d4de2.tar.zst
nixpkgs-d8f98d1a8542bade5c342f0029ad6c58e65d4de2.zip
Adding avxsynth.
To add it, I also add ffms and log4cpp.
Diffstat (limited to 'pkgs/applications/video/avxsynth')
-rw-r--r--pkgs/applications/video/avxsynth/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/applications/video/avxsynth/default.nix b/pkgs/applications/video/avxsynth/default.nix
new file mode 100644
index 00000000000..70dcad49c97
--- /dev/null
+++ b/pkgs/applications/video/avxsynth/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchurl, ffmpeg, autoconf, automake, libtool, pkgconfig, log4cpp
+, pango, cairo, python, libjpeg, ffms
+, enableQt ? true, qt4}:
+
+stdenv.mkDerivation rec {
+  name = "avxsynth-4.0-e153e672bf";
+
+  src = fetchurl {
+    url = https://github.com/avxsynth/avxsynth/tarball/e153e672bf;
+    name = "${name}.tar.gz";
+    sha256 = "16l2ld8k1nfsms6jd9d9r4l247xxbncsak66w87icr20yzyhs14s";
+  };
+
+  buildInputs = [ ffmpeg autoconf automake libtool pkgconfig log4cpp pango cairo python
+    libjpeg ffms ]
+    ++ stdenv.lib.optional enableQt qt4;
+
+  preConfigure = "autoreconf -vfi";
+
+  meta = {
+    homepage = https://github.com/avxsynth/avxsynth/wiki;
+    license = "GPLv2+";
+    maintainers = with stdenv.lib.maintainers; [viric];
+    platforms = with stdenv.lib.platforms; linux;
+  };
+}