Remove kde4.kdenlive and dependencies
- Already updated to KDE 5 in Nixpkgs
This commit is contained in:
parent
767787cb36
commit
9af7f6b9d4
@ -1,41 +0,0 @@
|
|||||||
{ stdenv, fetchurl, frei0r, lib, cmake, qt4, perl, kdelibs, automoc4
|
|
||||||
, phonon , makeWrapper, mlt, gettext , qimageblitz, qjson
|
|
||||||
, shared_mime_info, soprano, pkgconfig, shared_desktop_ontologies
|
|
||||||
, libv4l, oxygen_icons
|
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "kdenlive-${version}";
|
|
||||||
version = "0.9.10";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "mirror://kde/stable/kdenlive/${version}/src/${name}.tar.bz2";
|
|
||||||
sha256 = "0qxpxnfbr8g6xq0h32skgqqi2xylrv2bnmyx5x1cws9y2wwxp3zn";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
frei0r kdelibs libv4l mlt phonon qimageblitz qjson qt4
|
|
||||||
shared_desktop_ontologies soprano
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
automoc4 cmake gettext makeWrapper perl pkgconfig shared_mime_info
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedUserEnvPkgs = [ oxygen_icons ];
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
postInstall = ''
|
|
||||||
wrapProgram $out/bin/kdenlive --prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1
|
|
||||||
wrapProgram $out/bin/kdenlive_render --prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Free and open source video editor";
|
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
|
||||||
homepage = http://www.kdenlive.org/;
|
|
||||||
maintainers = with stdenv.lib.maintainers; [ goibhniu viric ];
|
|
||||||
platforms = with stdenv.lib.platforms; linux;
|
|
||||||
};
|
|
||||||
}
|
|
@ -1,39 +0,0 @@
|
|||||||
{ stdenv, fetchurl, SDL, ffmpeg, frei0r, libjack2, libdv, libsamplerate
|
|
||||||
, libvorbis, libxml2, makeWrapper, movit, pkgconfig, qt, sox
|
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "mlt-${version}";
|
|
||||||
version = "0.9.6";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://github.com/mltframework/mlt/archive/v${version}.tar.gz";
|
|
||||||
sha256 = "0s8ypg0q50zfcmq527y8cbdvzxhiqidm1923k28ar8jqmjp45ssh";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
SDL ffmpeg frei0r libjack2 libdv libsamplerate libvorbis libxml2
|
|
||||||
makeWrapper movit pkgconfig qt sox
|
|
||||||
];
|
|
||||||
|
|
||||||
# Mostly taken from:
|
|
||||||
# http://www.kdenlive.org/user-manual/downloading-and-installing-kdenlive/installing-source/installing-mlt-rendering-engine
|
|
||||||
configureFlags = [
|
|
||||||
"--avformat-swscale" "--enable-gpl" "--enable-gpl" "--enable-gpl3"
|
|
||||||
"--enable-opengl"
|
|
||||||
];
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
postInstall = ''
|
|
||||||
wrapProgram $out/bin/melt --prefix FREI0R_PATH : ${frei0r}/lib/frei0r-1
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
description = "Open source multimedia framework, designed for television broadcasting";
|
|
||||||
homepage = http://www.mltframework.org/;
|
|
||||||
license = licenses.gpl3;
|
|
||||||
maintainers = [ maintainers.goibhniu ];
|
|
||||||
platforms = platforms.linux;
|
|
||||||
};
|
|
||||||
}
|
|
@ -8889,11 +8889,6 @@ with pkgs;
|
|||||||
|
|
||||||
mlt = callPackage ../development/libraries/mlt {};
|
mlt = callPackage ../development/libraries/mlt {};
|
||||||
|
|
||||||
mlt-qt4 = callPackage ../development/libraries/mlt/qt-4.nix {
|
|
||||||
ffmpeg = ffmpeg_2;
|
|
||||||
qt = qt4;
|
|
||||||
};
|
|
||||||
|
|
||||||
mono-addins = callPackage ../development/libraries/mono-addins { };
|
mono-addins = callPackage ../development/libraries/mono-addins { };
|
||||||
|
|
||||||
mono-zeroconf = callPackage ../development/libraries/mono-zeroconf { };
|
mono-zeroconf = callPackage ../development/libraries/mono-zeroconf { };
|
||||||
@ -16712,8 +16707,6 @@ with pkgs;
|
|||||||
|
|
||||||
kadu = callPackage ../applications/networking/instant-messengers/kadu { };
|
kadu = callPackage ../applications/networking/instant-messengers/kadu { };
|
||||||
|
|
||||||
kdenlive = callPackage ../applications/video/kdenlive { mlt = mlt-qt4; };
|
|
||||||
|
|
||||||
kdesvn = callPackage ../applications/version-management/kdesvn { };
|
kdesvn = callPackage ../applications/version-management/kdesvn { };
|
||||||
|
|
||||||
kgraphviewer = callPackage ../applications/graphics/kgraphviewer { };
|
kgraphviewer = callPackage ../applications/graphics/kgraphviewer { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user