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:
commit
2b0c0e1445
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in a new issue