mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: bind: Update to 9.16.0.
* gnu/packages/dns.scm (isc-bind): Update to 9.16.0. [inputs]: Add libuv. [native-inputs]: Add pkg-config. Remove net-tools. [arguments]: Remove obsolete --with-openssl= from #:configure-flags.
This commit is contained in:
parent
3ef91e1534
commit
3c4c60fa79
1 changed files with 8 additions and 8 deletions
|
@ -114,32 +114,32 @@ (define-public dnsmasq
|
||||||
(define-public isc-bind
|
(define-public isc-bind
|
||||||
(package
|
(package
|
||||||
(name "bind")
|
(name "bind")
|
||||||
(version "9.14.10")
|
(version "9.16.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"https://ftp.isc.org/isc/bind9/" version
|
"https://ftp.isc.org/isc/bind9/" version
|
||||||
"/bind-" version ".tar.gz"))
|
"/bind-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0nkkc2phkkzwgl922xg41gx5pc5f4safabqslaw3880hwdf8vfaa"))))
|
"0a1f1wrlbnmq79q6s15fny36ip81malg6wlr8acp7amimsyxjjxg"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(outputs `("out" "utils"))
|
(outputs `("out" "utils"))
|
||||||
(inputs
|
(inputs
|
||||||
;; It would be nice to add GeoIP and gssapi once there are packages.
|
;; It would be nice to add GeoIP and gssapi once there are packages.
|
||||||
`(("libcap" ,libcap)
|
`(("libcap" ,libcap)
|
||||||
|
("libuv" ,libuv)
|
||||||
("libxml2" ,libxml2)
|
("libxml2" ,libxml2)
|
||||||
("openssl" ,openssl)
|
("openssl" ,openssl)
|
||||||
("p11-kit" ,p11-kit)
|
("p11-kit" ,p11-kit)
|
||||||
("python" ,python)
|
("python" ,python)
|
||||||
("python-ply" ,python-ply)))
|
("python-ply" ,python-ply)))
|
||||||
(native-inputs `(("perl" ,perl)
|
(native-inputs
|
||||||
("net-tools" ,net-tools)))
|
`(("perl" ,perl)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
(list (string-append "--with-openssl="
|
(list (string-append "--with-pkcs11="
|
||||||
(assoc-ref %build-inputs "openssl"))
|
|
||||||
(string-append "--with-pkcs11="
|
|
||||||
(assoc-ref %build-inputs "p11-kit")))
|
(assoc-ref %build-inputs "p11-kit")))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
|
Loading…
Reference in a new issue