From cccc7df536d92b87f09c3f2213f4bb1bbfb7ad77 Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Tue, 10 Sep 2024 12:04:32 +0200 Subject: [PATCH] updating bind --- glicid/packages/dns.scm | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/glicid/packages/dns.scm b/glicid/packages/dns.scm index 9294c20..5f69a00 100644 --- a/glicid/packages/dns.scm +++ b/glicid/packages/dns.scm @@ -5,6 +5,7 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix utils) + #:use-module (gnu packages datastructures) #:use-module (gnu packages linux) #:use-module (gnu packages libevent) #:use-module (gnu packages perl) @@ -18,25 +19,25 @@ #:use-module (gnu packages crates-web) #:use-module (gnu packages crates-tls)) - (define-public isc-bind (package (name "bind") - (version "9.18.19") + (version "9.20.1") (source (origin (method url-fetch) (uri (list (string-append "https://downloads.isc.org/isc/bind9/" version "/bind-" version ".tar.xz"))) - (sha256 (base32 "1k0jfv9a91wcb28gdply29h3psw8z84dlbi73pgbmgirak00jphi")))) + (sha256 (base32 "1c5f548l4b6w61x6vxlf2d88sbli4fn26mrbnqrhsh9197vxyvgy")))) (build-system gnu-build-system) (outputs `("out" "utils")) (inputs - (list libcap libuv libxml2 openssl p11-kit python `(,nghttp2 "lib") python-ply)) + (list libcap libuv liburcu libxml2 openssl p11-kit python `(,nghttp2 "lib") python-ply)) (native-inputs (list perl pkg-config)) (arguments `( #:configure-flags - (list "--with-sysroot=/") + (list "--with-sysroot=/" + (string-append "--with-pkcs11=" (assoc-ref %build-inputs "p11-kit"))) #:phases (modify-phases %standard-phases (add-after 'strip 'move-to-utils @@ -62,7 +63,6 @@ (license (list license:mpl2.0)))) - (define-public rust-hickory-dns-0.24 (package (name "rust-hickory-dns") @@ -113,4 +113,3 @@ is based on the Tokio and Futures libraries, which means it should be easily integrated into other software that also use those libraries.") (license (list license:expat license:asl2.0) ))) -