aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/dns.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2018-03-19 22:58:48 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2018-03-20 02:03:52 +0100
commit4e6c51d4eb203578524d2910f17934aa643fc779 (patch)
tree359aeed0d3bef5758a9988b9d3a8f81aafa9718d /gnu/packages/dns.scm
parenta3e2b72ca900fe14e552a85816d77ad7d0b20b33 (diff)
downloadguix-4e6c51d4eb203578524d2910f17934aa643fc779.tar
guix-4e6c51d4eb203578524d2910f17934aa643fc779.tar.gz
gnu: dnsmasq: Update to 2.79.
* gnu/packages/dns.scm (dnsmasq): Update to 2.79.
Diffstat (limited to 'gnu/packages/dns.scm')
-rw-r--r--gnu/packages/dns.scm7
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm
index d093b0d9b5..e76dd5cfe7 100644
--- a/gnu/packages/dns.scm
+++ b/gnu/packages/dns.scm
@@ -59,7 +59,7 @@
(define-public dnsmasq
(package
(name "dnsmasq")
- (version "2.78")
+ (version "2.79")
(source (origin
(method url-fetch)
(uri (string-append
@@ -67,7 +67,7 @@
version ".tar.xz"))
(sha256
(base32
- "0ar5h5v3kas2qx2wgy5iqin15gc4jhqrqs067xacgc3lii1rz549"))))
+ "07w6cw706yyahwvbvslhkrbjf2ynv567cgy9pal8bz8lrbsp9bbq"))))
(build-system gnu-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)))
@@ -79,8 +79,7 @@
#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
"CC=gcc"
"COPTS=\"-DHAVE_DBUS\"")
- ;; No 'check' target.
- #:tests? #f))
+ #:tests? #f)) ; no ‘check’ target
(home-page "http://www.thekelleys.org.uk/dnsmasq/doc.html")
(synopsis "Small caching DNS proxy and DHCP/TFTP server")
(description