diff options
| author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-30 02:00:01 +0100 | 
|---|---|---|
| committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-30 02:00:04 +0100 | 
| commit | b721bfe71e4ba74205b6b8260cd3cb90d240ddee (patch) | |
| tree | 11f594cc7f4a5835a51e9b3c6e5499a47532085f /gnu/packages/dns.scm | |
| parent | 932a60812a620c9dcc5b0e327da27edd20732911 (diff) | |
gnu: knot: Update to 3.2.2.
* gnu/packages/dns.scm (knot): Update to 3.2.2.
[source]: Remove bundled libngtcp2.
Diffstat (limited to 'gnu/packages/dns.scm')
| -rw-r--r-- | gnu/packages/dns.scm | 12 | 
1 files changed, 8 insertions, 4 deletions
| diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index 785d1397ef..64fcac351c 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -871,7 +871,7 @@ Extensions} (DNSSEC).")  (define-public knot    (package      (name "knot") -    (version "3.1.9") +    (version "3.2.2")      (source       (origin         (method git-fetch) @@ -880,15 +880,19 @@ Extensions} (DNSSEC).")               (commit (string-append "v" version))))         (file-name (git-file-name name version))         (sha256 -        (base32 "0w3jyz9qgkb34gkv2lr71phk5ad3rycn86qyw7n88ryhdsk45j73")) +        (base32 "1x1waa2cb91zhsqkx4mkiqy00kq1f1pavjfhlz7wknlnll48iayd"))         (modules '((guix build utils)))         (snippet          '(begin             ;; Remove Ragel-generated C files.  We'll recreate them below.             (for-each delete-file (find-files "." "\\.c\\.[gt]."))             (delete-file "src/libknot/yparser/ypbody.c") -           ;; Remove bundled library to ensure we always use the system's. -           (delete-file-recursively "src/contrib/libbpf"))))) +           ;; 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")))))))      (build-system gnu-build-system)      (outputs (list "out" "doc" "lib" "tools"))      (arguments | 
