dump_syms: add SystemConfiguration to fix darwin build
This commit is contained in:
parent
83bfe406db
commit
921136781d
2 changed files with 3 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
|||
|
||||
# darwin
|
||||
, Security
|
||||
, SystemConfiguration
|
||||
|
||||
# tests
|
||||
, firefox-esr-unwrapped
|
||||
|
@ -43,6 +44,7 @@ rustPlatform.buildRustPackage {
|
|||
openssl
|
||||
] ++ lib.optionals (stdenv.isDarwin) [
|
||||
Security
|
||||
SystemConfiguration
|
||||
];
|
||||
|
||||
checkFlags = [
|
||||
|
|
|
@ -7602,7 +7602,7 @@ with pkgs;
|
|||
};
|
||||
|
||||
dump_syms = callPackage ../development/tools/dump_syms {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
|
||||
};
|
||||
|
||||
dumpasn1 = callPackage ../tools/security/dumpasn1 { };
|
||||
|
|
Loading…
Reference in a new issue