Unverified Commit 2b0c0e14 authored by tomf's avatar tomf Committed by GitHub
Browse files

Merge pull request #263189 from eliandoran/fix/keepassxc_darwin

keepassxc: fix build failure on darwin (fixes #262795)
parents d3e8a1c0 8540f5f4
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -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 = ''