diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-01-15 11:34:54 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-01-15 11:34:54 +0100 |
commit | 04732c37ca2d714652a7895709622b7ef7441422 (patch) | |
tree | 10d96c99219c8fc50f471c92afa01fa9772ae4d5 /build-aux | |
parent | e2034de5d0b16827d2b9353da56480780e3bc1bf (diff) | |
download | guix-04732c37ca2d714652a7895709622b7ef7441422.tar guix-04732c37ca2d714652a7895709622b7ef7441422.tar.gz |
distro: Fetch bootstrap binaries from alpha.gnu.org.
* build-aux/download.scm (%url-base): Change to alpha.gnu.org.
* distro/packages/bootstrap.scm (%bootstrap-base-url): Rename to...
(%bootstrap-base-urls): ... this. Add alpha.gnu.org as the first
URL. Update users.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/download.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build-aux/download.scm b/build-aux/download.scm index 97a74b123a..62956378ed 100644 --- a/build-aux/download.scm +++ b/build-aux/download.scm @@ -28,7 +28,11 @@ (guix utils)) (define %url-base - "http://www.fdn.fr/~lcourtes/software/guix/packages") + "http://alpha.gnu.org/gnu/guix/bootstrap" + + ;; Alternately: + ;;"http://www.fdn.fr/~lcourtes/software/guix/packages" + ) (define (file-name->uri file) "Return the URI for FILE." |