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

View File

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