Merge pull request #292683 from risicle/ris-routinator-darwin-systemconfiguration
routinator: fix build on darwin
This commit is contained in:
commit
2c53d57267
2 changed files with 3 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
|||
, fetchFromGitHub
|
||||
, stdenv
|
||||
, Security
|
||||
, SystemConfiguration
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
|
@ -18,7 +19,7 @@ rustPlatform.buildRustPackage rec {
|
|||
|
||||
cargoHash = "sha256-X+pAvudfbxng6kMv0NO00v6mMBXUMaXvZb/L1OgWd38=";
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
|
||||
|
||||
buildNoDefaultFeatures = true;
|
||||
buildFeatures = [ "socks" ];
|
||||
|
|
|
@ -6439,7 +6439,7 @@ with pkgs;
|
|||
routersploit = callPackage ../tools/security/routersploit { };
|
||||
|
||||
routinator = callPackage ../servers/routinator {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
|
||||
};
|
||||
|
||||
rsbep = callPackage ../tools/backup/rsbep { };
|
||||
|
|
Loading…
Reference in a new issue