Merge pull request #294649 from a-n-n-a-l-e-e/dump-syms-darwin-fix

dump_syms: add SystemConfiguration to fix darwin build
This commit is contained in:
a-n-n-a-l-e-e 2024-03-09 22:43:25 -08:00 committed by GitHub
commit 32d81c0823
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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

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