gnu: bootstrap: Prefer HTTPS for downloads.

* gnu/packages/bootstrap.scm (%bootstrap-base-urls): Add "https" URL first.
This commit is contained in:
Ludovic Courtès 2017-07-27 15:17:48 +02:00
parent 5c93d23324
commit 894fc4e9f5
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 2 additions and 1 deletions

View File

@ -195,8 +195,9 @@ successful, or false to signal an error."
(define %bootstrap-base-urls
;; This is where the initial binaries come from.
'("ftp://alpha.gnu.org/gnu/guix/bootstrap"
'("https://alpha.gnu.org/gnu/guix/bootstrap"
"http://alpha.gnu.org/gnu/guix/bootstrap"
"ftp://alpha.gnu.org/gnu/guix/bootstrap"
"http://www.fdn.fr/~lcourtes/software/guix/packages"
"http://flashner.co.il/guix/bootstrap"))