nixpkgs/pkgs/applications/kde/kdenlive.nix

73 lines
1.2 KiB
Nix
Raw Normal View History

{ mkDerivation
, lib
, extra-cmake-modules
, kdoctools
2017-05-16 15:56:41 +00:00
, wrapGAppsHook
, qtscript
, kactivities
, kconfig
, kcrash
, kguiaddons
, kiconthemes
, ki18n
, kinit
, kio
2016-08-12 09:38:37 +00:00
, kio-extras
, kwindowsystem
, kdbusaddons
, plasma-framework
, knotifications
, knewstuff
, karchive
, knotifyconfig
, kplotting
, ktextwidgets
, mlt
, shared_mime_info
, libv4l
2016-08-12 09:38:37 +00:00
, kfilemetadata
, ffmpeg
, phonon-backend-gstreamer
2016-08-12 10:23:26 +00:00
, qtquickcontrols
}:
2017-05-16 15:56:41 +00:00
mkDerivation {
name = "kdenlive";
patches = [
./kdenlive-cmake-concurrent-module.patch
];
nativeBuildInputs = [
extra-cmake-modules
kdoctools
2017-05-16 15:56:41 +00:00
wrapGAppsHook
];
buildInputs = [
qtscript
2016-08-12 09:38:37 +00:00
kconfig
kcrash
kguiaddons
kiconthemes
2016-08-12 09:38:37 +00:00
kinit
kdbusaddons
knotifications
knewstuff
karchive
knotifyconfig
kplotting
ktextwidgets
mlt
shared_mime_info
libv4l
2016-08-12 09:38:37 +00:00
ffmpeg
];
propagatedBuildInputs = [
2017-05-16 15:56:41 +00:00
kactivities kconfig kcrash kguiaddons kiconthemes kinit kio kio-extras
kdbusaddons kfilemetadata knotifications knewstuff karchive knotifyconfig
kplotting ktextwidgets kwindowsystem plasma-framework
phonon-backend-gstreamer qtquickcontrols shared_mime_info
];
meta = {
2016-08-12 09:38:37 +00:00
license = with lib.licenses; [ gpl2Plus ];
};
}