2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
35 lines
976 B
Nix
35 lines
976 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "dnsx";
|
|
version = "1.1.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "projectdiscovery";
|
|
repo = "dnsx";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-dyqZXc5k76BwF2Kh2vm9d+dpvgpXK/8VQeGjx1UzA6k=";
|
|
};
|
|
|
|
vendorHash = "sha256-S1mJMVfQSy49Lm4q3v05kjbXBlBgBt/AAzLOoQkk75A=";
|
|
|
|
# Tests require network access
|
|
doCheck = false;
|
|
|
|
meta = with 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";
|
|
changelog = "https://github.com/projectdiscovery/dnsx/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|