2020-12-29 15:07:52 +00:00
|
|
|
{ buildGoModule
|
|
|
|
, fetchFromGitHub
|
2021-02-05 17:12:51 +00:00
|
|
|
, lib
|
2020-12-29 15:07:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "dnsx";
|
2021-06-04 09:07:49 +00:00
|
|
|
version = "1.0.4";
|
2020-12-29 15:07:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "projectdiscovery";
|
|
|
|
repo = "dnsx";
|
|
|
|
rev = "v${version}";
|
2021-06-04 09:07:49 +00:00
|
|
|
sha256 = "sha256-dfjchsmGqyWLxO2sP+TlBEeKz9Fd4bHWG2r4FJPGNMs=";
|
2020-12-29 15:07:52 +00:00
|
|
|
};
|
|
|
|
|
2021-06-04 09:07:49 +00:00
|
|
|
vendorSha256 = "sha256-KJyWb+coWSdvZGwDw/JSLtPeynndnaevwyYIzyEH4Kc=";
|
2020-12-29 15:07:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-12-29 15:07:52 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|