diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-02-24 21:25:52 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-02-24 21:25:52 +0100 |
commit | aa51eb2073f17e40d660d0beaeb7b1b78aa9e1cc (patch) | |
tree | 5ccb7f83712c4400176a344e537b5fcbbb7047aa /gnu/packages/dns.scm | |
parent | 1b9eb93a5dd1e90291b614311cd1fb2051e72718 (diff) | |
parent | 6eb35d4a780d37b809a6c8c1794ff227da2fa29d (diff) | |
download | guix-aa51eb2073f17e40d660d0beaeb7b1b78aa9e1cc.tar guix-aa51eb2073f17e40d660d0beaeb7b1b78aa9e1cc.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/dns.scm')
-rw-r--r-- | gnu/packages/dns.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index 1a6b29746a..656c1f9d70 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -106,19 +106,19 @@ and BOOTP/TFTP for network booting of diskless machines.") (define-public isc-bind (package (name "bind") - (version "9.12.3-P1") + (version "9.12.3-P4") (source (origin (method url-fetch) (uri (string-append - "https://ftp.isc.org/isc/bind9/" version "/" name "-" - version ".tar.gz")) + "https://ftp.isc.org/isc/bind9/" version + "/bind-" version ".tar.gz")) (sha256 (base32 - "0wzdbn6ig851354cjdys5q3gvqcvl2gmmih1gzr8ldl7sy4r7dvc")))) + "01pj47z5582rd538dmbzf1msw4jc8j4zr0zx4ciy88r6qr9l80fi")))) (build-system gnu-build-system) (outputs `("out" "utils")) (inputs - ;; it would be nice to add GeoIP and gssapi once there is package + ;; It would be nice to add GeoIP and gssapi once there are packages. `(("libcap" ,libcap) ("libxml2" ,libxml2) ("openssl" ,openssl) |