about summary refs log tree commit diff
path: root/pkgs/tools/security/cloudfox
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-09-27 19:51:37 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2022-09-27 19:51:37 +0200
commitf57b8bd640d676598c0eb0b6ea35b7c26e15e10e (patch)
tree108927c91f476b8f9ec3987561f32198b465d780 /pkgs/tools/security/cloudfox
parent4dd035239719fc7992a4214934ecaf2a943d5ec0 (diff)
cloudfox: init at 1.7.1
Diffstat (limited to 'pkgs/tools/security/cloudfox')
-rw-r--r--pkgs/tools/security/cloudfox/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/tools/security/cloudfox/default.nix b/pkgs/tools/security/cloudfox/default.nix
new file mode 100644
index 0000000000000..b4781ba7c0bd1
--- /dev/null
+++ b/pkgs/tools/security/cloudfox/default.nix
@@ -0,0 +1,28 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+  pname = "cloudfox";
+  version = "1.7.1";
+
+  src = fetchFromGitHub {
+    owner = "BishopFox";
+    repo = pname;
+    rev = "v${version}";
+    hash = "sha256-JwSXm75CC1GBbQ7kZJXyDXf2997owRaGcB2m7q+BrEs=";
+  };
+
+  vendorSha256 = "sha256-KrJR5YZxP6psHphY0BhYFu14PaDi5k1ngFfYPSzOYK4=";
+
+  # Some tests are failing because of wrong filename/path
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Tool for situational awareness of cloud penetration tests";
+    homepage = "https://github.com/BishopFox/cloudfox";
+    license = licenses.mit;
+    maintainers = with maintainers; [ fab ];
+  };
+}