Adding more dependencies to mlt (for more features)

svn path=/nixpkgs/trunk/; revision=21459
This commit is contained in:
Lluís Batlle i Rossell 2010-04-30 13:12:12 +00:00
parent a386398be6
commit 32b7ecf0d9
2 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,5 @@
{stdenv, fetchurl, SDL, qt, pkgconfig, ffmpeg, libdv}:
{stdenv, fetchurl, SDL, qt, pkgconfig, ffmpeg, libdv, libxml2, libsamplerate,
libvorbis, sox}:
stdenv.mkDerivation {
name = "mlt-0.5.4";
@ -8,7 +9,7 @@ stdenv.mkDerivation {
sha256 = "12s5znbm6q45r33ymyw1bak3d41xhh72gh9i1pdsgvddr0pizshj";
};
buildInputs = [ qt SDL ffmpeg libdv ];
buildInputs = [ qt SDL ffmpeg libdv libxml2 libsamplerate libvorbis sox ];
# Mostly taken from:
# http://www.kdenlive.org/user-manual/downloading-and-installing-kdenlive/installing-source/installing-mlt-rendering-engine

View File

@ -4736,7 +4736,8 @@ let
};
mlt = import ../development/libraries/mlt {
inherit fetchurl stdenv pkgconfig SDL ffmpeg libdv;
inherit fetchurl stdenv pkgconfig SDL ffmpeg libdv libxml2 libsamplerate
libvorbis sox;
qt = qt4;
};