Adding kdenlive for kde5

(cherry picked from commit e17bc0b871db241434c05d3079bd2790359cd720)
This commit is contained in:
Lluís Batlle i Rossell 2016-08-06 14:57:59 +02:00
parent b1817fa8a3
commit 2effe4609d
3 changed files with 165 additions and 0 deletions

View File

@ -0,0 +1,82 @@
{ kdeApp
, lib
, extra-cmake-modules
, kdoctools
, qtscript
, kactivities
, kconfig
, kcrash
, kguiaddons
, kiconthemes
, ki18n
, kinit
, kjobwidgets
, kio
, kparts
, ktexteditor
, kwindowsystem
, kxmlgui
, kdbusaddons
, kwallet
, plasma-framework
, kitemmodels
, knotifications
, threadweaver
, knewstuff
, karchive
, knotifyconfig
, kplotting
, ktextwidgets
, mlt
, shared_mime_info
, libv4l
}:
kdeApp {
name = "kdenlive";
nativeBuildInputs = [
extra-cmake-modules
kdoctools
];
buildInputs = [
qtscript
#kconfig
#kcrash
kguiaddons
kiconthemes
#kinit
#kjobwidgets
#kparts
#kxmlgui
kdbusaddons
#kwallet
#kitemmodels
knotifications
#threadweaver
knewstuff
#libgit2
karchive
knotifyconfig
kplotting
ktextwidgets
mlt
shared_mime_info
libv4l
];
propagatedBuildInputs = [
#kactivities
#ki18n
#kio
#ktexteditor
#kwindowsystem
plasma-framework
];
postInstall = ''
wrapQtProgram "$out/bin/kdenlive"
'';
enableParallelBuilding = true;
meta = {
license = with lib.licenses; [ gpl3 lgpl3 lgpl2 ];
maintainers = [ lib.maintainers.ttuegel ];
};
}

View File

@ -42,6 +42,7 @@ let
gpgmepp = callPackage ./gpgmepp.nix {};
gwenview = callPackage ./gwenview.nix {};
kate = callPackage ./kate.nix {};
kdenlive = callPackage ./kdenlive.nix {};
kcalc = callPackage ./kcalc.nix {};
kcolorchooser = callPackage ./kcolorchooser.nix {};
kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {};

View File

@ -0,0 +1,82 @@
{ kdeApp
, lib
, extra-cmake-modules
, kdoctools
, qtscript
, kactivities
, kconfig
, kcrash
, kguiaddons
, kiconthemes
, ki18n
, kinit
, kjobwidgets
, kio
, kparts
, ktexteditor
, kwindowsystem
, kxmlgui
, kdbusaddons
, kwallet
, plasma-framework
, kitemmodels
, knotifications
, threadweaver
, knewstuff
, karchive
, knotifyconfig
, kplotting
, ktextwidgets
, mlt
, shared_mime_info
, libv4l
}:
kdeApp {
name = "kdenlive";
nativeBuildInputs = [
extra-cmake-modules
kdoctools
];
buildInputs = [
qtscript
#kconfig
#kcrash
kguiaddons
kiconthemes
#kinit
#kjobwidgets
#kparts
#kxmlgui
kdbusaddons
#kwallet
#kitemmodels
knotifications
#threadweaver
knewstuff
#libgit2
karchive
knotifyconfig
kplotting
ktextwidgets
mlt
shared_mime_info
libv4l
];
propagatedBuildInputs = [
#kactivities
#ki18n
#kio
#ktexteditor
#kwindowsystem
plasma-framework
];
postInstall = ''
wrapQtProgram "$out/bin/kdenlive"
'';
enableParallelBuilding = true;
meta = {
license = with lib.licenses; [ gpl3 lgpl3 lgpl2 ];
maintainers = [ lib.maintainers.ttuegel ];
};
}