From 45b048a00fe50239dd61b5414a46a0508209cbd5 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 31 Mar 2026 09:24:33 +0100 Subject: [PATCH] gnu: dnsmasq: Update to 2.92. * gnu/packages/dns.scm (dnsmasq): Update to 2.92. [source]: Switch to git-fetch. Change-Id: I33cc7aa2801e342e830a4a3cdb35b3055a7de748 --- gnu/packages/dns.scm | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index edf7aebc30..25e57b59ae 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -295,15 +295,16 @@ prompt the user with the option to go with insecure DNS only.") (define-public dnsmasq (package (name "dnsmasq") - (version "2.90") - (source (origin - (method url-fetch) - (uri (string-append - "http://www.thekelleys.org.uk/dnsmasq/dnsmasq-" - version ".tar.xz")) - (sha256 - (base32 - "1r09l537vi867hlpv6vl7nvqhscvq1kf04m896bfrgrpv2dk0l4f")))) + (version "2.92") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "http://thekelleys.org.uk/git/dnsmasq.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "055gn5kigz0m9y09vig97s1g257hnlkhw4wv9d9wdficnsxcbwwm")))) (build-system gnu-build-system) (native-inputs (list pkg-config))