diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-09-10 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-09-10 02:00:00 +0200 |
commit | d6381a2f16791c4f21bcce67891e6e5842af8e24 (patch) | |
tree | f9d5010b594f06394a0632ada0b2cc29e656cd65 /gnu/packages/dns.scm | |
parent | 6415fd680d35b51c82bbf69aa74032337873a82e (diff) | |
download | guix-d6381a2f16791c4f21bcce67891e6e5842af8e24.tar.gz |
gnu: knot: Update to 3.3.1.
* gnu/packages/dns.scm (knot): Update to 3.3.1.
Diffstat (limited to 'gnu/packages/dns.scm')
-rw-r--r-- | gnu/packages/dns.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index 51e88e29bb..33715d6b19 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -844,7 +844,7 @@ Extensions} (DNSSEC).") (define-public knot (package (name "knot") - (version "3.2.9") + (version "3.3.1") (source (origin (method git-fetch) @@ -853,7 +853,7 @@ Extensions} (DNSSEC).") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1kxmplngnlpd6j9nbzq1c1z02ipd38ypnppy7frg5crn83phfbxm")) + (base32 "0l29809wcpx4q1d87539799c4mai0vvfkzkbmrba186mn47p3lsd")) (modules '((guix build utils))) (snippet '(begin @@ -863,9 +863,8 @@ Extensions} (DNSSEC).") ;; Remove bundled libraries to ensure we always use the system's. (with-directory-excursion "src/contrib" (for-each delete-file-recursively - (list "libbpf" - ;; TODO: package this for DoQ (‘QUIC’) support. - "libngtcp2"))))))) + ;; TODO: package libngtcp2 for DoQ (‘QUIC’) support. + '("libngtcp2"))))))) (build-system gnu-build-system) (outputs (list "out" "doc" "lib" "tools")) (arguments |