Merge pull request #178068 from fabaff/dnsmonster
dnsmonster: init at 0.9.3
This commit is contained in:
commit
95e7c3049a
39
pkgs/tools/networking/dnsmonster/default.nix
Normal file
39
pkgs/tools/networking/dnsmonster/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, libpcap
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "dnsmonster";
|
||||
version = "0.9.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mosajjal";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-1tYC76g3GOqMaosAYYXOrOKTdW7muPTaeeLzGUsjogE=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-2gWifzBjAx+c/if6ZZQ/s73oPPTY9eJfHYL4F/058h0=";
|
||||
|
||||
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.isDarwin;
|
||||
};
|
||||
}
|
@ -5232,6 +5232,8 @@ with pkgs;
|
||||
|
||||
dnsmon-go = callPackage ../tools/networking/dnsmon-go { };
|
||||
|
||||
dnsmonster = callPackage ../tools/networking/dnsmonster { };
|
||||
|
||||
dnspeep = callPackage ../tools/security/dnspeep { };
|
||||
|
||||
dnsproxy = callPackage ../tools/networking/dnsproxy { };
|
||||
|
Loading…
Reference in New Issue
Block a user