summary refs log tree commit diff
path: root/pkgs/development/libraries/mlt
diff options
context:
space:
mode:
authorCillian de Roiste <cillian.deroiste@gmail.com>2012-06-05 16:52:11 +0000
committerCillian de Roiste <cillian.deroiste@gmail.com>2012-06-05 16:52:11 +0000
commit1067f51f924fc707022510837c07e5864f4d851a (patch)
treed949b94e145c7b4ea3f522780bddd87914eeda66 /pkgs/development/libraries/mlt
parent73a1d5e27face256c81af586de52b0062b5ce948 (diff)
downloadnixpkgs-1067f51f924fc707022510837c07e5864f4d851a.tar
nixpkgs-1067f51f924fc707022510837c07e5864f4d851a.tar.gz
nixpkgs-1067f51f924fc707022510837c07e5864f4d851a.tar.bz2
nixpkgs-1067f51f924fc707022510837c07e5864f4d851a.tar.lz
nixpkgs-1067f51f924fc707022510837c07e5864f4d851a.tar.xz
nixpkgs-1067f51f924fc707022510837c07e5864f4d851a.tar.zst
nixpkgs-1067f51f924fc707022510837c07e5864f4d851a.zip
Updating Kdenlive to 0.9.2, and also updating mlt to 0.8.0 since it's a dependency
svn path=/nixpkgs/trunk/; revision=34362
Diffstat (limited to 'pkgs/development/libraries/mlt')
-rw-r--r--pkgs/development/libraries/mlt/default.nix18
1 files changed, 11 insertions, 7 deletions
diff --git a/pkgs/development/libraries/mlt/default.nix b/pkgs/development/libraries/mlt/default.nix
index 1740de118a4..640bc7edc32 100644
--- a/pkgs/development/libraries/mlt/default.nix
+++ b/pkgs/development/libraries/mlt/default.nix
@@ -1,15 +1,19 @@
-{stdenv, fetchurl, SDL, qt4, pkgconfig, ffmpeg, libdv, libxml2, libsamplerate,
-libvorbis, sox}:
+{ stdenv, fetchurl, SDL, ffmpeg, libdv, libsamplerate, libvorbis
+, libxml2 , pkgconfig, qt4, sox }:
 
-stdenv.mkDerivation {
-  name = "mlt-0.7.8";
+stdenv.mkDerivation rec {
+  name = "mlt-${version}";
+  version = "0.8.0";
 
   src = fetchurl {
-    url = mirror://sourceforge/mlt/mlt-0.7.8.tar.gz;
-    sha256 = "0hvfjk0hspamym0ahi635ivx9iv3v2jy2qv15za1vmz28qkkp0wm";
+    url = "mirror://sourceforge/mlt/${name}.tar.gz";
+    sha256 = "1pf61imb5xzgzf65g54kybjr67235rxi20691023mcv34qwppl3v";
   };
 
-  buildInputs = [ qt4 SDL ffmpeg libdv libxml2 libsamplerate libvorbis sox pkgconfig ];
+  buildInputs = 
+    [ SDL ffmpeg libdv libsamplerate libvorbis libxml2 pkgconfig qt4
+      sox
+    ];
 
   # Mostly taken from:
   # http://www.kdenlive.org/user-manual/downloading-and-installing-kdenlive/installing-source/installing-mlt-rendering-engine