Skip to content

Commit

Permalink
xca: fix darwin build
Browse files Browse the repository at this point in the history
  • Loading branch information
wegank committed Nov 1, 2024
1 parent 2da5697 commit 954c49a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pkgs/applications/misc/xca/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@ stdenv.mkDerivation (finalAttrs: {

enableParallelBuilding = true;

dontWrapQtApps = stdenv.hostPlatform.isDarwin;

postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
mkdir -p "$out/Applications"
mv "$out/xca.app" "$out/Applications/xca.app"
'';

meta = with lib; {
description = "X509 certificate generation tool, handling RSA, DSA and EC keys, certificate signing requests (PKCS#10) and CRLs";
mainProgram = "xca";
Expand Down

0 comments on commit 954c49a

Please sign in to comment.