summary refs log tree commit diff
path: root/pkgs/tools/security/zdns/default.nix
blob: 354dd5b64475b6b33b847b62ac8a3e37e20bc17e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "zdns";
  version = "2022-03-14-unstable";

  src = fetchFromGitHub {
    owner = "zmap";
    repo = pname;
    rev = "d659a361f6d5165462c10e1c1243f420175e066b";
    hash = "sha256-856O6H03me3IM39/+6n56KJIetL+v4on6+lJx5D2Pcw=";
  };

  vendorSha256 = "sha256-5kZ0voyicnqK/0yrMYW+gR1vVDyptW6I1HgyG4zleX8=";

  meta = with lib; {
    description = "CLI DNS lookup tool";
    homepage = "https://github.com/zmap/zdns";
    license = with licenses; [ asl20 ];
    maintainers = with maintainers; [ fab ];
  };
}