diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-17 01:18:37 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-17 01:18:37 -0400 |
commit | 9f388b1ee1733d84edff7f473cbcbc4ab42b7128 (patch) | |
tree | 27bd5e908f732a1cddca4b9ef93ee1981d3b0095 /gnu/packages/dns.scm | |
parent | 2857e527de058d9e7f4efea50d381a449a1b6641 (diff) | |
parent | 9f375a4c0f55238614e047448c8e878b9829f918 (diff) | |
download | patches-9f388b1ee1733d84edff7f473cbcbc4ab42b7128.tar patches-9f388b1ee1733d84edff7f473cbcbc4ab42b7128.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/dns.scm')
-rw-r--r-- | gnu/packages/dns.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index a9b183c231..735b2af9b4 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -99,7 +99,7 @@ and BOOTP/TFTP for network booting of diskless machines.") (define-public isc-bind (package (name "bind") - (version "9.12.0") + (version "9.12.1") (source (origin (method url-fetch) (uri (string-append @@ -107,7 +107,7 @@ and BOOTP/TFTP for network booting of diskless machines.") version ".tar.gz")) (sha256 (base32 - "10iwkghl5g50b7wc17bsb9wa0dh2gd57bjlk6ynixhywz6dhx1r9")))) + "043mjcw405qa0ghm5dkhfsq35gsy279724fz3mjqpr1mbi14dr0n")))) (build-system gnu-build-system) (outputs `("out" "utils")) (inputs @@ -149,7 +149,8 @@ and BOOTP/TFTP for network booting of diskless machines.") ;; (system "bin/tests/system/ifconfig.sh up"))) (replace 'check (lambda _ - (zero? (system* "make" "force-test"))))))) + (invoke "make" "force-test") + #t))))) (synopsis "An implementation of the Domain Name System") (description "BIND is an implementation of the @dfn{Domain Name System} (DNS) protocols for the Internet. It is a reference implementation of those |