dnsmonster: 1.0.2 -> 1.1.0 (#480603)

This commit is contained in:
Fabian Affolter
2026-01-17 10:11:51 +00:00
committed by GitHub
+8 -8
View File
@@ -6,34 +6,34 @@
libpcap,
}:
buildGoModule rec {
buildGoModule (finalAttrs: {
pname = "dnsmonster";
version = "1.0.2";
version = "1.1.0";
src = fetchFromGitHub {
owner = "mosajjal";
repo = "dnsmonster";
tag = "v${version}";
hash = "sha256-sg+88WbjlfcPgWQ9RnmLr6/VWwXEjsctfWt4TGx1oNc=";
tag = "v${finalAttrs.version}";
hash = "sha256-+GFkGUR3XKDgrxVAZ3MuPxGyI0oGROdhHKMBwMSvoBI=";
};
vendorHash = "sha256-PIiSpxfZmhxWkHUnoDYKppI7/gzGm0RKh7u9HK4zrEU=";
vendorHash = "sha256-7rIBbaYr1dgC0ArcuwZelHKG5TLIQDV9JSBoYOcz+C0=";
buildInputs = [ libpcap ];
ldflags = [
"-s"
"-w"
"-X=github.com/mosajjal/dnsmonster/util.releaseVersion=${version}"
"-X=github.com/mosajjal/dnsmonster/util.releaseVersion=${finalAttrs.version}"
];
meta = {
description = "Passive DNS Capture and Monitoring Toolkit";
homepage = "https://github.com/mosajjal/dnsmonster";
changelog = "https://github.com/mosajjal/dnsmonster/releases/tag/${src.tag}";
changelog = "https://github.com/mosajjal/dnsmonster/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ fab ];
broken = stdenv.hostPlatform.isDarwin;
mainProgram = "dnsmonster";
};
}
})