about summary refs log tree commit diff
path: root/pkgs/tools/security/feroxbuster
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-03-16 19:04:34 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-03-16 19:04:34 +0100
commited99c5e0463387f04635b19c0980d40b013c0443 (patch)
tree3e46978d56ba7aec626005bec12d6fcb1dfd53f8 /pkgs/tools/security/feroxbuster
parentc7a7acb034f090a315d79f05475327919a501cfd (diff)
feroxbuster: init at 2.6.1
Diffstat (limited to 'pkgs/tools/security/feroxbuster')
-rw-r--r--pkgs/tools/security/feroxbuster/default.nix45
1 files changed, 45 insertions, 0 deletions
diff --git a/pkgs/tools/security/feroxbuster/default.nix b/pkgs/tools/security/feroxbuster/default.nix
new file mode 100644
index 0000000000000..ecfc496ce8e74
--- /dev/null
+++ b/pkgs/tools/security/feroxbuster/default.nix
@@ -0,0 +1,45 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, openssl
+, pkg-config
+, rustPlatform
+, Security
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "feroxbuster";
+  version = "2.6.1";
+
+  src = fetchFromGitHub {
+    owner = "epi052";
+    repo = pname;
+    rev = "v${version}";
+    hash = "sha256-RY9bFuALRaVXDrC0eIx0inPjRqNpRKNZf3mCrKIdGL8=";
+  };
+
+  cargoSha256 = "sha256-0Zawlx/lhF7K8nOsHYKO84pnctVMpm3RfnAFCOltOqE=";
+
+  OPENSSL_NO_VENDOR = true;
+
+  nativeBuildInputs = [
+    pkg-config
+  ];
+
+  buildInputs = [
+    openssl
+  ] ++ lib.optionals stdenv.isDarwin [
+    Security
+  ];
+
+  # Tests require network access
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Fast, simple, recursive content discovery tool";
+    homepage = "https://github.com/epi052/feroxbuster";
+    license = with licenses; [ mit ];
+    maintainers = with maintainers; [ fab ];
+  };
+}
+