monolith: add missing framework on darwin
This commit is contained in:
@@ -5,6 +5,7 @@
|
||||
, openssl
|
||||
, libiconv
|
||||
, Security
|
||||
, SystemConfiguration
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
@@ -22,7 +23,7 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];
|
||||
buildInputs = lib.optionals stdenv.isLinux [ openssl ]
|
||||
++ lib.optionals stdenv.isDarwin [ libiconv Security ];
|
||||
++ lib.optionals stdenv.isDarwin [ libiconv Security SystemConfiguration ];
|
||||
|
||||
checkFlagsArray = [ "--skip=tests::cli" ];
|
||||
|
||||
|
||||
@@ -10963,7 +10963,7 @@ with pkgs;
|
||||
monocraft = callPackage ../data/fonts/monocraft { };
|
||||
|
||||
monolith = callPackage ../tools/backup/monolith {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
|
||||
};
|
||||
|
||||
moreutils = callPackage ../tools/misc/moreutils {
|
||||
|
||||
Reference in New Issue
Block a user