3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/kde-5/applications/kdenlive.nix

76 lines
1.1 KiB
Nix
Raw Normal View History

{ kdeApp
, lib
, extra-cmake-modules
, kdoctools
, qtscript
, kactivities
, kconfig
, kcrash
, kguiaddons
, kiconthemes
, ki18n
, kinit
, kio
2016-08-12 10:38:37 +01:00
, kio-extras
, kwindowsystem
, kdbusaddons
, plasma-framework
, knotifications
, knewstuff
, karchive
, knotifyconfig
, kplotting
, ktextwidgets
, mlt
, shared_mime_info
, libv4l
2016-08-12 10:38:37 +01:00
, kfilemetadata
, ffmpeg
, phonon-backend-vlc
}:
kdeApp {
name = "kdenlive";
nativeBuildInputs = [
extra-cmake-modules
kdoctools
];
buildInputs = [
qtscript
2016-08-12 10:38:37 +01:00
kconfig
kcrash
kguiaddons
kiconthemes
2016-08-12 10:38:37 +01:00
kinit
kdbusaddons
knotifications
knewstuff
karchive
knotifyconfig
kplotting
ktextwidgets
mlt
shared_mime_info
libv4l
2016-08-12 10:38:37 +01:00
ffmpeg
];
propagatedBuildInputs = [
2016-08-12 10:38:37 +01:00
kactivities
ki18n
kio
kio-extras
kwindowsystem
kfilemetadata
plasma-framework
2016-08-12 10:38:37 +01:00
phonon-backend-vlc
];
postInstall = ''
2016-08-12 10:38:37 +01:00
wrapQtProgram "$out/bin/kdenlive" \
--prefix PATH : "${kinit}/bin"
'';
enableParallelBuilding = true;
meta = {
2016-08-12 10:38:37 +01:00
license = with lib.licenses; [ gpl2Plus ];
};
}