mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
download: Add bordeaux.guix.gnu.org as a content addressed mirror.
bordeaux.guix.gnu.org now provides access to some files by hash. This is done through the nar-herder finding a nar produced by a fixed output derivation for the requested content, and then providing the content stored inside that nar. I've put this new entry at the start of the list, as I think it's more likely to have content than the others. Because bordeaux.guix.gnu.org stores nars indefinitely, my suspicion is that it's going to be able to fulfil more requests than ci.guix.gnu.org, which relies on the file requested being in the store (so the now frequent garbage collection is going to limit the files available). * guix/download.scm (%content-addressed-mirrors): Add bordeaux.guix.gnu.org. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
55839e3537
commit
7d0ebe040d
1 changed files with 5 additions and 1 deletions
|
@ -387,7 +387,11 @@ (define (guix-publish host)
|
|||
file "/" (symbol->string algo) "/"
|
||||
(bytevector->nix-base32-string hash))))
|
||||
|
||||
(list (guix-publish "ci.guix.gnu.org")
|
||||
(list (guix-publish
|
||||
;; bordeaux.guix.gnu.org uses the nar-herder rather than guix
|
||||
;; publish, but it supports the same style of requests
|
||||
"bordeaux.guix.gnu.org")
|
||||
(guix-publish "ci.guix.gnu.org")
|
||||
(lambda (file algo hash)
|
||||
;; 'tarballs.nixos.org' supports several algorithms.
|
||||
(string-append "https://tarballs.nixos.org/"
|
||||
|
|
Loading…
Reference in a new issue