ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / zd / zdns / package.nix
blobd67bb6d8e4c72e45868ce4f6ca292f2567f6f3f3
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "zdns";
8   version = "2023-04-09-unstable";
10   src = fetchFromGitHub {
11     owner = "zmap";
12     repo = pname;
13     rev = "ac6c7f30a7f5e11f87779f5275adeed117227cd6";
14     hash = "sha256-que2uzIH8GybU6Ekumg/MjgBHSmFCF+T7PWye+25kaY=";
15   };
17   vendorHash = "sha256-daMPk1TKrUXXqCb4WVkrUIJsBL7uzXLJnxWNbHQ/Im4=";
19   meta = with lib; {
20     description = "CLI DNS lookup tool";
21     mainProgram = "zdns";
22     homepage = "https://github.com/zmap/zdns";
23     license = with licenses; [ asl20 ];
24     maintainers = with maintainers; [ fab ];
25   };