mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
add system keychains to security-tool's propagated inputs
This commit is contained in:
parent
071304f26d
commit
5f308b50e4
2 changed files with 2 additions and 3 deletions
|
@ -214,9 +214,6 @@ self: super: {
|
|||
patchPhase = (drv.patchPhase or "") + ''
|
||||
substituteInPlace System/X509/MacOS.hs --replace security ${security_tool}/bin/security
|
||||
'';
|
||||
__propagatedImpureHostDeps = drv.__propagatedImpureHostDeps ++ [
|
||||
"/System/Library/Keychains"
|
||||
];
|
||||
})
|
||||
else super.x509-system;
|
||||
|
||||
|
|
|
@ -41,6 +41,8 @@ stdenv.mkDerivation rec {
|
|||
|
||||
propagatedBuildInputs = [ GSS Kerberos Security PCSC Foundation ];
|
||||
|
||||
__propagatedImpureHostDeps = [ "/System/Library/Keychains" ];
|
||||
|
||||
buildInputs = [
|
||||
gnustep-make
|
||||
libsecurity_asn1
|
||||
|
|
Loading…
Reference in a new issue