nixpkgs/pkgs/applications/video/avxsynth/default.nix
Lluís Batlle i Rossell d8f98d1a85 Adding avxsynth.
To add it, I also add ffms and log4cpp.
2013-04-10 15:12:37 +02:00

27 lines
785 B
Nix

{ 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;
};
}