kdenlive: avoid double wrapping
This commit is contained in:
parent
7698197323
commit
016bfce7d2
@ -84,12 +84,20 @@ mkDerivation {
|
|||||||
sed -i CMakeLists.txt -e '/find_package(Qt5 REQUIRED/ s|)| Concurrent)|'
|
sed -i CMakeLists.txt -e '/find_package(Qt5 REQUIRED/ s|)| Concurrent)|'
|
||||||
substituteAllInPlace src/kdenlivesettings.kcfg
|
substituteAllInPlace src/kdenlivesettings.kcfg
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
dontWrapGApps = true;
|
||||||
|
|
||||||
# Frei0r path needs to be set too or Kdenlive will complain. See:
|
# Frei0r path needs to be set too or Kdenlive will complain. See:
|
||||||
# https://github.com/NixOS/nixpkgs/issues/83885
|
# https://github.com/NixOS/nixpkgs/issues/83885
|
||||||
# https://github.com/NixOS/nixpkgs/issues/29614#issuecomment-488849325
|
# https://github.com/NixOS/nixpkgs/issues/29614#issuecomment-488849325
|
||||||
qtWrapperArgs = [
|
qtWrapperArgs = [
|
||||||
"--set FREI0R_PATH ${frei0r}/lib/frei0r-1"
|
"--set FREI0R_PATH ${frei0r}/lib/frei0r-1"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
preFixup = ''
|
||||||
|
qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
license = with lib.licenses; [ gpl2Plus ];
|
license = with lib.licenses; [ gpl2Plus ];
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user