1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

Trying to fix the latest kdenlive

This commit is contained in:
Lluís Batlle i Rossell 2016-08-12 12:23:26 +02:00
parent 17f0cce445
commit 2045b40b10

View file

@ -1,4 +1,5 @@
{ kdeApp
, kdeWrapper
, lib
, extra-cmake-modules
, kdoctools
@ -27,9 +28,11 @@
, kfilemetadata
, ffmpeg
, phonon-backend-vlc
, qtquickcontrols
}:
kdeApp {
let
unwrapped = kdeApp {
name = "kdenlive";
nativeBuildInputs = [
extra-cmake-modules
@ -63,13 +66,16 @@ kdeApp {
kfilemetadata
plasma-framework
phonon-backend-vlc
qtquickcontrols
];
postInstall = ''
wrapQtProgram "$out/bin/kdenlive" \
--prefix PATH : "${kinit}/bin"
'';
enableParallelBuilding = true;
meta = {
license = with lib.licenses; [ gpl2Plus ];
};
};
in
kdeWrapper unwrapped
{
targets = [ "bin/kdenlive" ];
paths = [ kinit ];
}