summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-05-22 16:56:43 +0200
committerGitHub <noreply@github.com>2024-05-22 16:56:43 +0200
commit2fe170b2e12be66a612fd979e0c6971c79fc1b41 (patch)
tree2b0abcda5eb45499f4a18822c9e80e3bf9119dc0
parentMerge pull request #313631 from fabaff/pystatgrab-darwin (diff)
parentferoxbuster: fix build on darwin (diff)
downloadnixpkgs-2fe170b2e12be66a612fd979e0c6971c79fc1b41.tar.gz
Merge pull request #313664 from wegank/feroxbuster-darwin
feroxbuster: fix build on darwin
-rw-r--r--pkgs/tools/security/feroxbuster/default.nix2
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/security/feroxbuster/default.nix b/pkgs/tools/security/feroxbuster/default.nix
index 0459519c43f7..f4e361332e96 100644
--- a/pkgs/tools/security/feroxbuster/default.nix
+++ b/pkgs/tools/security/feroxbuster/default.nix
@@ -5,6 +5,7 @@
, pkg-config
, rustPlatform
, Security
+, SystemConfiguration
}:
rustPlatform.buildRustPackage rec {
@@ -35,6 +36,7 @@ rustPlatform.buildRustPackage rec {
openssl
] ++ lib.optionals stdenv.isDarwin [
Security
+ SystemConfiguration
];
# Tests require network access
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index ee2907d324cc..b9d719966b14 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -7917,7 +7917,7 @@ with pkgs;
ferm = callPackage ../tools/networking/ferm { };
feroxbuster = callPackage ../tools/security/feroxbuster {
- inherit (darwin.apple_sdk.frameworks) Security;
+ inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
};
ffsend = callPackage ../tools/misc/ffsend {