dnsx: init at 1.0.1
This commit is contained in:
parent
c7f75838c3
commit
69d57ea4ae
31
pkgs/tools/security/dnsx/default.nix
Normal file
31
pkgs/tools/security/dnsx/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -3379,6 +3379,8 @@ in
|
||||
|
||||
dnstop = callPackage ../tools/networking/dnstop { };
|
||||
|
||||
dnsx = callPackage ../tools/security/dnsx { };
|
||||
|
||||
dhcp = callPackage ../tools/networking/dhcp { };
|
||||
|
||||
dhcpdump = callPackage ../tools/networking/dhcpdump { };
|
||||
|
Loading…
Reference in New Issue
Block a user