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
|
# darwin
|
||||||
, Security
|
, Security
|
||||||
|
, SystemConfiguration
|
||||||
|
|
||||||
# tests
|
# tests
|
||||||
, firefox-esr-unwrapped
|
, firefox-esr-unwrapped
|
||||||
|
@ -43,6 +44,7 @@ rustPlatform.buildRustPackage {
|
||||||
openssl
|
openssl
|
||||||
] ++ lib.optionals (stdenv.isDarwin) [
|
] ++ lib.optionals (stdenv.isDarwin) [
|
||||||
Security
|
Security
|
||||||
|
SystemConfiguration
|
||||||
];
|
];
|
||||||
|
|
||||||
checkFlags = [
|
checkFlags = [
|
||||||
|
|
|
@ -7602,7 +7602,7 @@ with pkgs;
|
||||||
};
|
};
|
||||||
|
|
||||||
dump_syms = callPackage ../development/tools/dump_syms {
|
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 { };
|
dumpasn1 = callPackage ../tools/security/dumpasn1 { };
|
||||||
|
|
Loading…
Reference in a new issue