summary refs log tree commit diff
path: root/pkgs/development/libraries/mlt
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-06-05 00:30:44 +0200
committerVladimír Čunát <vcunat@gmail.com>2013-06-05 00:30:44 +0200
commit341aadaba15a8b6c5c8153009d3c8f69c086c5e9 (patch)
treea2cb3f075cf4d054dd0456a659a791d7d13bd981 /pkgs/development/libraries/mlt
parent888c7f27578a1d025c3f28e23d7c767bb3b509a3 (diff)
downloadnixpkgs-341aadaba15a8b6c5c8153009d3c8f69c086c5e9.tar
nixpkgs-341aadaba15a8b6c5c8153009d3c8f69c086c5e9.tar.gz
nixpkgs-341aadaba15a8b6c5c8153009d3c8f69c086c5e9.tar.bz2
nixpkgs-341aadaba15a8b6c5c8153009d3c8f69c086c5e9.tar.lz
nixpkgs-341aadaba15a8b6c5c8153009d3c8f69c086c5e9.tar.xz
nixpkgs-341aadaba15a8b6c5c8153009d3c8f69c086c5e9.tar.zst
nixpkgs-341aadaba15a8b6c5c8153009d3c8f69c086c5e9.zip
kdenlive+mlt: enabling some subcomponents, parallel builds
Diffstat (limited to 'pkgs/development/libraries/mlt')
-rw-r--r--pkgs/development/libraries/mlt/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/development/libraries/mlt/default.nix b/pkgs/development/libraries/mlt/default.nix
index 4e4790bd2a0..4d17184a608 100644
--- a/pkgs/development/libraries/mlt/default.nix
+++ b/pkgs/development/libraries/mlt/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, SDL, ffmpeg, libdv, libsamplerate, libvorbis
-, libxml2 , pkgconfig, qt4, sox }:
+, libxml2 , pkgconfig, qt4, sox, gtk2 }:
 
 stdenv.mkDerivation rec {
   name = "mlt-${version}";
@@ -10,18 +10,20 @@ stdenv.mkDerivation rec {
     sha256 = "0m4nzxli1pl8w59m4iwwhpmr1xdz7xfknmbl3a0mkkd1jzdiq3nc";
   };
 
-  buildInputs = 
+  buildInputs =
     [ SDL ffmpeg libdv libsamplerate libvorbis libxml2 pkgconfig qt4
-      sox
+      sox # gtk2 /*optional*/
     ];
 
   # Mostly taken from:
   # http://www.kdenlive.org/user-manual/downloading-and-installing-kdenlive/installing-source/installing-mlt-rendering-engine
-  configureFlags = [ "--enable-gpl" "--avformat-swscale" ];
+  configureFlags = [ "--enable-gpl" "--enable-gpl3" "--avformat-swscale" ];
+
+  enableParallelBuilding = true;
 
   meta = {
     homepage = http://www.mltframework.org/;
     description = "Open source multimedia framework, designed for television broadcasting";
-    license = "GPLv2+";
+    license = "GPLv3";
   };
 }