python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / dnsx / default.nix
blobf6ae5a5f1585d683f82635a6a193a9c8100ab397
1 { buildGoModule
2 , fetchFromGitHub
3 , lib
4 }:
6 buildGoModule rec {
7   pname = "dnsx";
8   version = "1.1.1";
10   src = fetchFromGitHub {
11     owner = "projectdiscovery";
12     repo = "dnsx";
13     rev = "v${version}";
14     sha256 = "sha256-5ZWBUgW3esdH+9APU5Z9Hn9VtA6VQqvUfJp5C42791k=";
15   };
17   vendorSha256 = "sha256-71JqgJZyx+9NTw08D7V5PPc84ExjGYdieCvFPTDSrs8=";
19   meta = with lib; {
20     description = "Fast and multi-purpose DNS toolkit";
21     longDescription = ''
22       dnsx is a fast and multi-purpose DNS toolkit allow to run multiple
23       probers using retryabledns library, that allows you to perform
24       multiple DNS queries of your choice with a list of user supplied
25       resolvers.
26     '';
27     homepage = "https://github.com/projectdiscovery/dnsx";
28     license = licenses.mit;
29     maintainers = with maintainers; [ fab ];
30   };