summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-03-31 09:24:33 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-03-31 09:27:45 +0100
commit45b048a00fe50239dd61b5414a46a0508209cbd5 (patch)
tree3f0c60ad8c26d8e1c3aeaad6d1e34303c6145062 /gnu
parent968154dac9b35e3893a3edf805f16dc4ee8c8770 (diff)
gnu: dnsmasq: Update to 2.92.
* gnu/packages/dns.scm (dnsmasq): Update to 2.92. [source]: Switch to git-fetch. Change-Id: I33cc7aa2801e342e830a4a3cdb35b3055a7de748
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/dns.scm19
1 files changed, 10 insertions, 9 deletions
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm
index edf7aebc302..25e57b59aef 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))