mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
apkeep: add missing darwin framework
This commit is contained in:
parent
48f1ff4e74
commit
585b8e0ef0
2 changed files with 3 additions and 1 deletions
|
@ -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; {
|
||||
|
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue