dump_syms: add SystemConfiguration to fix darwin build

This commit is contained in:
annalee 2024-03-10 05:01:34 +00:00
parent 83bfe406db
commit 921136781d
No known key found for this signature in database
2 changed files with 3 additions and 1 deletions

View file

@ -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 = [

View file

@ -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 { };