2022-11-07T01:41:57 dnsmonster 0.9.5 -> 0.9.6 https://github.com/mosajjal/dnsmonster/releases 2022-11-07T01:42:01 attrpath: dnsmonster 2022-11-07T01:42:01 Checking auto update branch... 2022-11-07T01:42:01 No auto update branch exists 2022-11-07T01:42:01 Old version 0.9.5" not present in master derivation file with contents: { lib , stdenv , buildGoModule , fetchFromGitHub , libpcap }: buildGoModule rec { pname = "dnsmonster"; version = "0.9.6"; src = fetchFromGitHub { owner = "mosajjal"; repo = pname; rev = "v${version}"; hash = "sha256-MiFwGVvaShy7dEKixIXdRCBmRc2YnxX49/7R8JugXng="; }; vendorSha256 = "sha256-ZCtxKMD9hESERcsptdhxdV51nxyvrdj+guTodn/Sqao="; 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; }; }