summary refs log tree commit diff
path: root/pkgs/applications/video/avxsynth/default.nix
blob: 70dcad49c9789041639ade00e095451f8558acdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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;
  };
}