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

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

27 lines
606 B
Nix
Raw Normal View History

2021-03-29 22:51:22 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "zdns";
version = "2023-04-09-unstable";
2021-03-29 22:51:22 +00:00
src = fetchFromGitHub {
owner = "zmap";
repo = pname;
rev = "ac6c7f30a7f5e11f87779f5275adeed117227cd6";
hash = "sha256-que2uzIH8GybU6Ekumg/MjgBHSmFCF+T7PWye+25kaY=";
2021-03-29 22:51:22 +00:00
};
vendorHash = "sha256-daMPk1TKrUXXqCb4WVkrUIJsBL7uzXLJnxWNbHQ/Im4=";
2021-03-29 22:51:22 +00:00
meta = with lib; {
description = "CLI DNS lookup tool";
mainProgram = "zdns";
2021-03-29 22:51:22 +00:00
homepage = "https://github.com/zmap/zdns";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}