mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
xca: fix darwin build
This commit is contained in:
parent
2da5697d50
commit
954c49aa1c
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user