gnu: isc-dhcp: Update bundled BIND to 9.11.4-P1.
* gnu/packages/admin.scm (isc-dhcp): Update bundled BIND to 9.11.4-P1. [home-page, inputs, source]: Use HTTPS URLs.
This commit is contained in:
parent
fdbca05d78
commit
8198b3db0b
|
@ -611,9 +611,9 @@ connection alive.")
|
||||||
(define-public isc-dhcp
|
(define-public isc-dhcp
|
||||||
(let* ((bind-major-version "9")
|
(let* ((bind-major-version "9")
|
||||||
(bind-minor-version "11")
|
(bind-minor-version "11")
|
||||||
(bind-patch-version "3")
|
(bind-patch-version "4")
|
||||||
(bind-release-type "") ; for patch release, use "-P"
|
(bind-release-type "-P") ; for patch release, use "-P"
|
||||||
(bind-release-version "") ; for patch release, e.g. "6"
|
(bind-release-version "1") ; for patch release, e.g. "6"
|
||||||
(bind-version (string-append bind-major-version
|
(bind-version (string-append bind-major-version
|
||||||
"."
|
"."
|
||||||
bind-minor-version
|
bind-minor-version
|
||||||
|
@ -626,7 +626,7 @@ connection alive.")
|
||||||
(version "4.4.1")
|
(version "4.4.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://ftp.isc.org/isc/dhcp/"
|
(uri (string-append "https://ftp.isc.org/isc/dhcp/"
|
||||||
version "/dhcp-" version ".tar.gz"))
|
version "/dhcp-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
|
@ -725,12 +725,12 @@ connection alive.")
|
||||||
("bind-source-tarball"
|
("bind-source-tarball"
|
||||||
,(origin
|
,(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://ftp.isc.org/isc/bind9/"
|
(uri (string-append "https://ftp.isc.org/isc/bind9/"
|
||||||
bind-version
|
bind-version
|
||||||
"/bind-" bind-version ".tar.gz"))
|
"/bind-" bind-version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1xbnb2b11274z9frc9y7nvkyxr52qx09bwb97gf9qzzcn8adx78d"))))
|
"08zyy13b8ydfbg26b3y6mw299qs89ba90gymraqqjsgjicydrq5h"))))
|
||||||
|
|
||||||
;; When cross-compiling, we need the cross Coreutils and sed.
|
;; When cross-compiling, we need the cross Coreutils and sed.
|
||||||
;; Otherwise just use those from %FINAL-INPUTS.
|
;; Otherwise just use those from %FINAL-INPUTS.
|
||||||
|
@ -739,7 +739,7 @@ connection alive.")
|
||||||
("sed" ,sed))
|
("sed" ,sed))
|
||||||
'())))
|
'())))
|
||||||
|
|
||||||
(home-page "http://www.isc.org/products/DHCP/")
|
(home-page "https://www.isc.org/products/DHCP/")
|
||||||
(synopsis "Dynamic Host Configuration Protocol (DHCP) tools")
|
(synopsis "Dynamic Host Configuration Protocol (DHCP) tools")
|
||||||
(description
|
(description
|
||||||
"ISC's Dynamic Host Configuration Protocol (DHCP) distribution provides a
|
"ISC's Dynamic Host Configuration Protocol (DHCP) distribution provides a
|
||||||
|
|
Loading…
Reference in New Issue