2014-07-27 10:30:57 +00:00
|
|
|
{ stdenv, fetchurl, frei0r, lib, cmake, qt4, perl, kdelibs, automoc4
|
|
|
|
, phonon , makeWrapper, mlt, gettext , qimageblitz, qjson
|
|
|
|
, shared_mime_info, soprano, pkgconfig, shared_desktop_ontologies
|
2015-02-27 13:10:43 +00:00
|
|
|
, libv4l, oxygen_icons
|
2014-07-27 10:30:57 +00:00
|
|
|
}:
|
2011-08-20 23:26:59 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "kdenlive-${version}";
|
2014-10-08 17:52:29 +00:00
|
|
|
version = "0.9.10";
|
2010-04-30 13:12:07 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-02-14 19:06:54 +00:00
|
|
|
url = "mirror://kde/stable/kdenlive/${version}/src/${name}.tar.bz2";
|
2014-10-08 17:52:29 +00:00
|
|
|
sha256 = "0qxpxnfbr8g6xq0h32skgqqi2xylrv2bnmyx5x1cws9y2wwxp3zn";
|
2010-04-30 13:12:07 +00:00
|
|
|
};
|
|
|
|
|
2014-07-27 10:30:57 +00:00
|
|
|
buildInputs = [
|
|
|
|
automoc4 cmake frei0r gettext kdelibs libv4l makeWrapper mlt perl
|
|
|
|
phonon pkgconfig qimageblitz qjson qt4 shared_desktop_ontologies
|
|
|
|
shared_mime_info soprano
|
|
|
|
];
|
2010-04-30 13:12:07 +00:00
|
|
|
|
2015-02-27 13:10:43 +00:00
|
|
|
propagatedUserEnvPkgs = [ oxygen_icons ];
|
|
|
|
|
2013-06-04 22:30:44 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-07-27 10:30:57 +00:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/kdenlive --prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1
|
|
|
|
wrapProgram $out/bin/kdenlive_render --prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1
|
|
|
|
'';
|
|
|
|
|
2010-04-30 13:12:07 +00:00
|
|
|
meta = {
|
|
|
|
description = "Free and open source video editor";
|
2014-07-27 10:30:57 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-04-30 13:12:07 +00:00
|
|
|
homepage = http://www.kdenlive.org/;
|
2014-07-27 10:30:57 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ goibhniu viric ];
|
2010-04-30 13:12:07 +00:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|