python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / zdns / default.nix
blob354dd5b64475b6b33b847b62ac8a3e37e20bc17e
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "zdns";
8   version = "2022-03-14-unstable";
10   src = fetchFromGitHub {
11     owner = "zmap";
12     repo = pname;
13     rev = "d659a361f6d5165462c10e1c1243f420175e066b";
14     hash = "sha256-856O6H03me3IM39/+6n56KJIetL+v4on6+lJx5D2Pcw=";
15   };
17   vendorSha256 = "sha256-5kZ0voyicnqK/0yrMYW+gR1vVDyptW6I1HgyG4zleX8=";
19   meta = with lib; {
20     description = "CLI DNS lookup tool";
21     homepage = "https://github.com/zmap/zdns";
22     license = with licenses; [ asl20 ];
23     maintainers = with maintainers; [ fab ];
24   };