about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-01-20 20:40:33 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-01-20 20:40:33 +0100
commitb54b344c616e3eff887f9f00eee39bfab31f2ee6 (patch)
treeab94ae86b9c56ef7ac0aedb6de3e698f8b3c1f17 /pkgs/tools
parentdd3238c002f51c2ab8fc325bf4fa330a29c64ed6 (diff)
sigurlx: init at 2.1.0
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/sigurlx/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/security/sigurlx/default.nix b/pkgs/tools/security/sigurlx/default.nix
new file mode 100644
index 0000000000000..b6908c2742282
--- /dev/null
+++ b/pkgs/tools/security/sigurlx/default.nix
@@ -0,0 +1,25 @@
+{ buildGoModule
+, fetchFromGitHub
+, lib
+}:
+
+buildGoModule rec {
+  pname = "sigurlx";
+  version = "2.1.0";
+
+  src = fetchFromGitHub {
+    owner = "drsigned";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "1q5vy05387qx7h4xcccvn2z2ks1kiff3mfbd2w3w0l0a4qgz74xs";
+  };
+
+  vendorSha256 = "1bp6bf99rxlyg91pn1y228q18lawpykmvkl22cydmclms0q0n238";
+
+  meta = with lib; {
+    description = "Tool to map the attack surface of web applications";
+    homepage = "https://github.com/drsigned/sigurlx";
+    license = with licenses; [ mit ];
+    maintainers = with maintainers; [ fab ];
+  };
+}