From 0e31f192ef73d34924fc7e550380a968a6eebf89 Mon Sep 17 00:00:00 2001 From: Petr Portnov Date: Sat, 28 Mar 2026 18:48:50 +0300 Subject: [PATCH] dnspeep: add nix-update-script --- pkgs/by-name/dn/dnspeep/package.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/by-name/dn/dnspeep/package.nix b/pkgs/by-name/dn/dnspeep/package.nix index 8b4e632fedb4..fdbf93b16479 100644 --- a/pkgs/by-name/dn/dnspeep/package.nix +++ b/pkgs/by-name/dn/dnspeep/package.nix @@ -3,6 +3,7 @@ rustPlatform, fetchFromGitHub, libpcap, + nix-update-script, }: rustPlatform.buildRustPackage (finalAttrs: { @@ -23,10 +24,13 @@ rustPlatform.buildRustPackage (finalAttrs: { LIBPCAP_VER = libpcap.version; }; + passthru.updateScript = nix-update-script { }; + meta = { description = "Spy on the DNS queries your computer is making"; mainProgram = "dnspeep"; homepage = "https://github.com/jvns/dnspeep"; + changelog = "https://github.com/jvns/dnspeep/releases/tag/v${finalAttrs.version}"; license = lib.licenses.mit; maintainers = [ lib.maintainers.progrm_jarvis ]; };