about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/video/avxsynth/default.nix
blob: 2cccbae43d2cacc8b95724a8c9e87f8ed642cd06 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
, cairo, ffmpeg, ffms, libjpeg, log4cpp, pango
, avxeditSupport ? false, qt4 ? null
}:

let
  inherit (stdenv.lib) enableFeature optional;
in

stdenv.mkDerivation {
  pname = "avxsynth";
  version = "2015-04-07";

  src = fetchFromGitHub {
    owner = "avxsynth";
    repo = "avxsynth";
    rev = "80dcb7ec8d314bc158130c92803308aa8e5e9242";
    sha256 = "0kckggvgv68b0qjdi7ms8vi97b46dl63n60qr96d2w67lf2nk87z";
  };

  configureFlags = [
    "--enable-autocrop"
    "--enable-framecapture"
    "--enable-subtitle"
    "--enable-ffms2"
    (enableFeature avxeditSupport "avxedit")
    "--with-jpeg=${libjpeg.out}/lib"
  ];

  nativeBuildInputs = [ autoreconfHook pkgconfig ];

  buildInputs = [ cairo ffmpeg ffms libjpeg log4cpp pango ]
    ++ optional avxeditSupport qt4;

  meta = with stdenv.lib; {
    description = "A script system that allows advanced non-linear editing";
    homepage = "https://github.com/avxsynth/avxsynth";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ codyopel ];
    platforms = platforms.linux;
    broken = true; # 2018-04-10
  };
}