2012-06-05 18:52:11 +02:00
|
|
|
{ stdenv, fetchurl, lib, cmake, qt4, perl, kdelibs, automoc4, phonon
|
|
|
|
, mlt, gettext , qimageblitz, qjson, shared_mime_info, soprano
|
2013-06-05 00:30:44 +02:00
|
|
|
, pkgconfig, shared_desktop_ontologies, libv4l }:
|
2011-08-21 01:26:59 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "kdenlive-${version}";
|
2013-05-07 12:19:22 +02:00
|
|
|
version = "0.9.6";
|
2010-04-30 15:12:07 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-02-14 20:06:54 +01:00
|
|
|
url = "mirror://kde/stable/kdenlive/${version}/src/${name}.tar.bz2";
|
2013-05-07 12:19:22 +02:00
|
|
|
sha256 = "1rw2cbzy5mabwijvryyzbhpgldn2zy5jy4j87hl4m1i8ah9lgi7x";
|
2010-04-30 15:12:07 +02:00
|
|
|
};
|
|
|
|
|
2013-06-05 00:30:44 +02:00
|
|
|
buildInputs =
|
2012-06-05 18:52:11 +02:00
|
|
|
[ cmake qt4 perl kdelibs automoc4 phonon mlt gettext qimageblitz
|
2013-06-05 00:30:44 +02:00
|
|
|
qjson shared_mime_info soprano pkgconfig shared_desktop_ontologies libv4l
|
2012-06-05 18:52:11 +02:00
|
|
|
];
|
2010-04-30 15:12:07 +02:00
|
|
|
|
2013-06-05 00:30:44 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2010-04-30 15:12:07 +02:00
|
|
|
meta = {
|
|
|
|
description = "Free and open source video editor";
|
|
|
|
license = "GPLv2+";
|
|
|
|
homepage = http://www.kdenlive.org/;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|