diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-11-03 16:35:36 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-11-03 16:37:08 +0100 |
commit | d5833914cfefbfb95683ed3e5160553399cc9d3d (patch) | |
tree | 616bf6e6275081c5e98b534bd8a87cf6090f4ef6 /gnu/packages/dns.scm | |
parent | 64753a7bc5c3b2c958706e6a7d08e34db24008cf (diff) |
gnu: snd: Update to 4.3.8.
* gnu/packages/dns.scm (snd): Update to 4.3.8.
[arguments]: Don't explicitly return #t from phases.
Diffstat (limited to 'gnu/packages/dns.scm')
-rw-r--r-- | gnu/packages/dns.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index 89ebe588fd..75bea46e23 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -592,14 +592,14 @@ asynchronous fashion.") (define-public nsd (package (name "nsd") - (version "4.3.7") + (version "4.3.8") (source (origin (method url-fetch) (uri (string-append "https://www.nlnetlabs.nl/downloads/nsd/nsd-" version ".tar.gz")) (sha256 - (base32 "1bg87g0i66hw16fm7gbqmzyi2rcn1hadzz0bg9b8s5mx7g2rwfzx")))) + (base32 "1qcrrglm3r486r6n26h5fr1xb1k8jf63gm9b43wrhnigywjpx28i")))) (build-system gnu-build-system) (arguments `(#:configure-flags @@ -635,8 +635,7 @@ asynchronous fashion.") ((".*INSTALL.*\\$\\((config|pid|xfr|db)dir" command) (string-append "#" command)) (("\\$\\(nsdconfigfile\\)\\.sample" file-name) - (string-append doc "/examples/" file-name))) - #t)))) + (string-append doc "/examples/" file-name))))))) #:tests? #f)) ; no tests (inputs `(("libevent" ,libevent) |