depot/third_party/nixpkgs/pkgs/tools/networking/dnsmon-go/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

30 lines
656 B
Nix

{ 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=";
};
vendorHash = "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 ];
};
}