apkeep: add missing darwin framework

This commit is contained in:
Weijia Wang 2024-04-12 10:30:05 +02:00
parent 48f1ff4e74
commit 585b8e0ef0
2 changed files with 3 additions and 1 deletions

View File

@ -5,6 +5,7 @@
, openssl
, pkg-config
, Security
, SystemConfiguration
}:
rustPlatform.buildRustPackage rec {
@ -30,6 +31,7 @@ rustPlatform.buildRustPackage rec {
openssl
] ++ lib.optionals stdenv.isDarwin [
Security
SystemConfiguration
];
meta = with lib; {

View File

@ -29882,7 +29882,7 @@ with pkgs;
apache-directory-studio = callPackage ../applications/networking/apache-directory-studio { };
apkeep = callPackage ../tools/misc/apkeep {
inherit (darwin.apple_sdk.frameworks) Security;
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
};
apngasm = callPackage ../applications/graphics/apngasm { };