diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-07-27 15:17:48 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-08-28 23:49:52 +0200 |
commit | 894fc4e9f5cf5184be54321c1ba5c8e51a6380d7 (patch) | |
tree | df5fdf6fccf7589611ea52850d08e250d7848114 /gnu | |
parent | 5c93d2332493a8e7edb07e8863b58c0ca1696280 (diff) | |
download | patches-894fc4e9f5cf5184be54321c1ba5c8e51a6380d7.tar patches-894fc4e9f5cf5184be54321c1ba5c8e51a6380d7.tar.gz |
gnu: bootstrap: Prefer HTTPS for downloads.
* gnu/packages/bootstrap.scm (%bootstrap-base-urls): Add "https" URL first.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bootstrap.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm index 0eb386cfbe..fe3c29bae2 100644 --- a/gnu/packages/bootstrap.scm +++ b/gnu/packages/bootstrap.scm @@ -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")) |