3
0
Fork 0
forked from mirrors/nixpkgs

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
commit 2b0c0e1445
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 = ''