about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/ronin/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/security/ronin/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/security/ronin/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/security/ronin/default.nix b/nixpkgs/pkgs/tools/security/ronin/default.nix
new file mode 100644
index 000000000000..8116d5c355f6
--- /dev/null
+++ b/nixpkgs/pkgs/tools/security/ronin/default.nix
@@ -0,0 +1,25 @@
+{ pkgs, lib, bundlerApp, bundlerUpdateScript }:
+
+bundlerApp {
+  pname = "ronin";
+  gemdir = ./.;
+  exes = [
+    "ronin"
+    "ronin-db"
+    "ronin-exploits"
+    "ronin-fuzzer"
+    "ronin-payloads"
+    "ronin-repos"
+    "ronin-vulns"
+    "ronin-web"
+  ];
+
+  passthru.updateScript = bundlerUpdateScript "ronin";
+
+  meta = with lib; {
+    description = "A free and Open Source Ruby toolkit for security research and development";
+    homepage    = "https://ronin-rb.dev";
+    license     = licenses.gpl3Plus;
+    maintainers = with maintainers; [ Ch1keen ];
+  };
+}