Merge pull request #263189 from eliandoran/fix/keepassxc_darwin

keepassxc: fix build failure on darwin (fixes #262795)
This commit is contained in:
tomf
2023-10-28 03:04:12 +11:00
committed by GitHub
+8 -1
View File
@@ -88,7 +88,14 @@ stdenv.mkDerivation rec {
runHook postCheck
'';
nativeBuildInputs = [ asciidoctor cmake wrapGAppsHook wrapQtAppsHook qttools pkg-config ];
nativeBuildInputs = [
asciidoctor
cmake
wrapQtAppsHook
qttools
pkg-config
]
++ lib.optional (!stdenv.isDarwin) wrapGAppsHook;
dontWrapGApps = true;
preFixup = ''