gnu: dnsmasq: Update to 2.79.

* gnu/packages/dns.scm (dnsmasq): Update to 2.79.
This commit is contained in:
Tobias Geerinckx-Rice 2018-03-19 22:58:48 +01:00
parent a3e2b72ca9
commit 4e6c51d4eb
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -59,7 +59,7 @@ (define-module (gnu packages dns)
(define-public dnsmasq
(package
(name "dnsmasq")
(version "2.78")
(version "2.79")
(source (origin
(method url-fetch)
(uri (string-append
@ -67,7 +67,7 @@ (define-public dnsmasq
version ".tar.xz"))
(sha256
(base32
"0ar5h5v3kas2qx2wgy5iqin15gc4jhqrqs067xacgc3lii1rz549"))))
"07w6cw706yyahwvbvslhkrbjf2ynv567cgy9pal8bz8lrbsp9bbq"))))
(build-system gnu-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)))
@ -79,8 +79,7 @@ (define-public dnsmasq
#: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