summaryrefslogtreecommitdiff
path: root/guix/store.scm
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2021-05-15 11:02:36 +0100
committerChristopher Baines <mail@cbaines.net>2021-06-18 11:25:41 +0100
commit4985a4272497bf9ba87a2190353d915da9b55906 (patch)
treeb00ee37b328b576938926126a695348ae2c299a8 /guix/store.scm
parent555d14eba701014da257f6d4d58d7e564713bb88 (diff)
downloadguix-patches-4985a4272497bf9ba87a2190353d915da9b55906.tar
guix-patches-4985a4272497bf9ba87a2190353d915da9b55906.tar.gz
Start enabling substitutes from bordeaux.guix.gnu.org.
In addition to substitutes from ci.guix.gnu.org. There are more changes that can be made in the future, but these changes seem like a good start. * config-daemon.ac (guix_substitute_urls): Add https://bordeaux.guix.gnu.org. * guix/scripts/substitute.scm (%default-substitute-urls): Add http://bordeaux.guix.gnu.org. * guix/store.scm (%default-substitute-urls): Add bordeaux.guix.gnu.org. * doc/guix.texi: Adjust accordingly. * doc/contributing.texi: Adjust accordingly.
Diffstat (limited to 'guix/store.scm')
-rw-r--r--guix/store.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/store.scm b/guix/store.scm
index b761264ac0..1ab2b08b47 100644
--- a/guix/store.scm
+++ b/guix/store.scm
@@ -787,7 +787,8 @@ encoding conversion errors."
(map (if (false-if-exception (resolve-interface '(gnutls)))
(cut string-append "https://" <>)
(cut string-append "http://" <>))
- '("ci.guix.gnu.org")))
+ '("ci.guix.gnu.org"
+ "bordeaux.guix.gnu.org")))
(define (current-user-name)
"Return the name of the calling user."