nixpkgs/pkgs/development/libraries/mlt/default.nix
Karn Kallio 69f2e5d157 Bump version of mlt to 0.6.2
This also fixes compilation error in kdenlive

svn path=/nixpkgs/trunk/; revision=25857
2011-02-09 15:34:30 +00:00

24 lines
755 B
Nix

{stdenv, fetchurl, SDL, qt, pkgconfig, ffmpeg, libdv, libxml2, libsamplerate,
libvorbis, sox}:
stdenv.mkDerivation {
name = "mlt-0.6.2";
src = fetchurl {
url = mirror://sourceforge/mlt/mlt-0.6.2.tar.gz;
sha256 = "0rvyblxyp52mdjl4aicrk16k56yb24ic4ir3n145cxdarwi98r7i";
};
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
configureFlags = [ "--enable-gpl" "--avformat-swscale" ];
meta = {
homepage = http://www.mltframework.org/;
description = "Open source multimedia framework, designed for television broadcasting";
license = "GPLv2+";
};
}