Making kdenlive find kinit in PATH

This commit is contained in:
Lluís Batlle i Rossell 2016-08-12 11:38:37 +02:00
parent ca6dedf0ee
commit 2d933d9d98

View File

@ -10,18 +10,12 @@
, kiconthemes , kiconthemes
, ki18n , ki18n
, kinit , kinit
, kjobwidgets
, kio , kio
, kparts , kio-extras
, ktexteditor
, kwindowsystem , kwindowsystem
, kxmlgui
, kdbusaddons , kdbusaddons
, kwallet
, plasma-framework , plasma-framework
, kitemmodels
, knotifications , knotifications
, threadweaver
, knewstuff , knewstuff
, karchive , karchive
, knotifyconfig , knotifyconfig
@ -30,6 +24,9 @@
, mlt , mlt
, shared_mime_info , shared_mime_info
, libv4l , libv4l
, kfilemetadata
, ffmpeg
, phonon-backend-vlc
}: }:
kdeApp { kdeApp {
@ -40,21 +37,14 @@ kdeApp {
]; ];
buildInputs = [ buildInputs = [
qtscript qtscript
#kconfig kconfig
#kcrash kcrash
kguiaddons kguiaddons
kiconthemes kiconthemes
#kinit kinit
#kjobwidgets
#kparts
#kxmlgui
kdbusaddons kdbusaddons
#kwallet
#kitemmodels
knotifications knotifications
#threadweaver
knewstuff knewstuff
#libgit2
karchive karchive
knotifyconfig knotifyconfig
kplotting kplotting
@ -62,21 +52,24 @@ kdeApp {
mlt mlt
shared_mime_info shared_mime_info
libv4l libv4l
ffmpeg
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [
#kactivities kactivities
#ki18n ki18n
#kio kio
#ktexteditor kio-extras
#kwindowsystem kwindowsystem
kfilemetadata
plasma-framework plasma-framework
phonon-backend-vlc
]; ];
postInstall = '' postInstall = ''
wrapQtProgram "$out/bin/kdenlive" wrapQtProgram "$out/bin/kdenlive" \
--prefix PATH : "${kinit}/bin"
''; '';
enableParallelBuilding = true; enableParallelBuilding = true;
meta = { meta = {
license = with lib.licenses; [ gpl3 lgpl3 lgpl2 ]; license = with lib.licenses; [ gpl2Plus ];
maintainers = [ lib.maintainers.ttuegel ];
}; };
} }