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 14:16:14 +03:00
{ buildGoModule
, fetchFromGitHub
, lib
2020-12-27 14:16:14 +03:00
}:
buildGoModule rec {
pname = "dnsx";
2022-03-14 08:56:57 +03:00
version = "1.1.0";
2020-12-27 14:16:14 +03:00
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "dnsx";
rev = "v${version}";
2022-03-14 08:56:57 +03:00
sha256 = "sha256-tcUVJ/qcQGivcAjWkcfv1fZxc9F5cYn1stpCHDoJRps=";
2020-12-27 14:16:14 +03:00
};
2022-03-14 08:56:57 +03:00
vendorSha256 = "sha256-hGV44Rx5kX2ZVBsTyeWm5SzpXzlTFNidt7bwzntboQo=";
2020-12-27 14:16:14 +03:00
meta = with lib; {
2020-12-27 14:16:14 +03: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 ];
};
}