nixpkgs/pkgs/tools/security/dnsx/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
832 B
Nix
Raw Normal View History

2020-12-27 11:16:14 +00:00
{ buildGoModule
, fetchFromGitHub
, lib
2020-12-27 11:16:14 +00:00
}:
buildGoModule rec {
pname = "dnsx";
2022-09-29 12:42:22 +00:00
version = "1.1.1";
2020-12-27 11:16:14 +00:00
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "dnsx";
rev = "v${version}";
2022-09-29 12:42:22 +00:00
sha256 = "sha256-5ZWBUgW3esdH+9APU5Z9Hn9VtA6VQqvUfJp5C42791k=";
2020-12-27 11:16:14 +00:00
};
2022-09-29 12:42:22 +00:00
vendorSha256 = "sha256-71JqgJZyx+9NTw08D7V5PPc84ExjGYdieCvFPTDSrs8=";
2020-12-27 11:16:14 +00:00
meta = with lib; {
2020-12-27 11:16:14 +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 ];
};
}