about summary refs log tree commit diff
path: root/pkgs/tools/security/gau
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2020-12-27 18:02:28 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2020-12-27 18:02:28 +0100
commitccffd3af9db4403a6f5d4cf348dc40ade3492edf (patch)
tree1f0ec04f9c40d7f6e7d7a94b83e935f03975bd3d /pkgs/tools/security/gau
parentc7f75838c360473805afcf5fb2fa65e678efd94b (diff)
gau: init at 1.1.0
Diffstat (limited to 'pkgs/tools/security/gau')
-rw-r--r--pkgs/tools/security/gau/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/tools/security/gau/default.nix b/pkgs/tools/security/gau/default.nix
new file mode 100644
index 0000000000000..cfbae951526ca
--- /dev/null
+++ b/pkgs/tools/security/gau/default.nix
@@ -0,0 +1,29 @@
+{ buildGoModule
+, fetchFromGitHub
+, stdenv
+}:
+
+buildGoModule rec {
+  pname = "gau";
+  version = "1.1.0";
+
+  src = fetchFromGitHub {
+    owner = "lc";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "1srbql603vvlxc6p1ibw0982icdq9kcr1iamxlr8bmgldbm8215w";
+  };
+
+  vendorSha256 = "17ag2wvaxv2dyx3yx3fvlf36ww4a44660pn4gvpbrwacsan9as5s";
+
+  meta = with stdenv.lib; {
+    description = "Tool to fetch known URLs";
+    longDescription = ''
+      getallurls (gau) fetches known URLs from various sources for any
+      given domain.
+    '';
+    homepage = "https://github.com/lc/gau";
+    license = licenses.mit;
+    maintainers = with maintainers; [ fab ];
+  };
+}