depot/pkgs/tools/networking/dnsmonster/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

39 lines
913 B
Nix

{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
libpcap,
}:
buildGoModule rec {
pname = "dnsmonster";
version = "1.0.0";
src = fetchFromGitHub {
owner = "mosajjal";
repo = "dnsmonster";
rev = "refs/tags/v${version}";
hash = "sha256-0WHTrqnc3vYQro+nSsQipAPVymR8L4uOwtd9GJHxhVM=";
};
vendorHash = "sha256-QCG/rhs4Y3lLDVU15cBNUZqbKc4faNAqKMhMOFwK2SY=";
buildInputs = [ libpcap ];
ldflags = [
"-s"
"-w"
"-X=github.com/mosajjal/dnsmonster/util.releaseVersion=${version}"
];
meta = with lib; {
description = "Passive DNS Capture and Monitoring Toolkit";
homepage = "https://github.com/mosajjal/dnsmonster";
changelog = "https://github.com/mosajjal/dnsmonster/releases/tag/v${version}";
license = licenses.gpl2Only;
maintainers = with maintainers; [ fab ];
broken = stdenv.hostPlatform.isDarwin;
mainProgram = "dnsmonster";
};
}