about summary refs log tree commit diff
path: root/pkgs/tools/security/dnsx
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2020-12-27 12:16:14 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2020-12-27 12:16:14 +0100
commit69d57ea4ae194c607d0245bff7d4491c9a55237e (patch)
treec7e020a93b9b4bdb722cd8ad6d45267714626801 /pkgs/tools/security/dnsx
parentc7f75838c360473805afcf5fb2fa65e678efd94b (diff)
dnsx: init at 1.0.1
Diffstat (limited to 'pkgs/tools/security/dnsx')
-rw-r--r--pkgs/tools/security/dnsx/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/tools/security/dnsx/default.nix b/pkgs/tools/security/dnsx/default.nix
new file mode 100644
index 0000000000000..21bf7d4664cc9
--- /dev/null
+++ b/pkgs/tools/security/dnsx/default.nix
@@ -0,0 +1,31 @@
+{ buildGoModule
+, fetchFromGitHub
+, stdenv
+}:
+
+buildGoModule rec {
+  pname = "dnsx";
+  version = "1.0.1";
+
+  src = fetchFromGitHub {
+    owner = "projectdiscovery";
+    repo = "dnsx";
+    rev = "v${version}";
+    sha256 = "1pgq21pbnz2dm272zrhd455njj5vg4kywpd230acj675nlgir6y1";
+  };
+
+  vendorSha256 = "0j2cqvskzxbyfrvsv4gm4qwfjm0digizcg157z5iignnknddajax";
+
+  meta = with stdenv.lib; {
+    description = "Fast and multi-purpose DNS toolkit";
+    longDescription = ''
+      dnsx is a fast and multi-purpose DNS toolkit allow to run multiple
+      probers using retryabledns library, that allows you to perform
+      multiple DNS queries of your choice with a list of user supplied
+      resolvers.
+    '';
+    homepage = "https://github.com/projectdiscovery/dnsx";
+    license = licenses.mit;
+    maintainers = with maintainers; [ fab ];
+  };
+}