dnsmon-go: init at unstable-2022-05-13

This commit is contained in:
Fabian Affolter 2022-06-18 20:57:18 +02:00
parent 2a0bc341b5
commit 0c3b4c878d
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib
, buildGoModule
, fetchFromGitHub
, libpcap
}:
buildGoModule rec {
pname = "dnsmon-go";
version = "unstable-2022-05-13";
src = fetchFromGitHub {
owner = "jonpulsifer";
repo = pname;
rev = "ec1d59f1f1314ce310ad4c04d2924e0ebd857f1d";
hash = "sha256-lAJ2bjs5VLzrHd09eFK4X0V/cCee2QsgdgiKq+y2c10=";
};
vendorSha256 = "sha256-aiX+NGUsFK0N9vC5baAHHMr28CbF5Xa4WgYLFFLBYTs=";
buildInputs = [
libpcap
];
meta = with lib; {
description = "Tool to collect DNS traffic";
homepage = "https://github.com/jonpulsifer/dnsmon-go";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -5217,6 +5217,8 @@ with pkgs;
dnsmasq = callPackage ../tools/networking/dnsmasq { };
dnsmon-go = callPackage ../tools/networking/dnsmon-go { };
dnspeep = callPackage ../tools/security/dnspeep { };
dnsproxy = callPackage ../tools/networking/dnsproxy { };