mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 13:09:23 -05:00
gnu: commencement: Fetch bootstrap tarballs from ftp.gnu.org too.
As a side effect, this ensures those tarballs are eventually archived by Software Heritage. * gnu/packages/commencement.scm (tcc-boot0)[source]: Add "mirror://gnu" URL. (gnumach-headers-boot0)[source]: Likewise. (hurd-source-boot0): Likewise.
This commit is contained in:
parent
2dae3cbecc
commit
cd626983af
1 changed files with 13 additions and 7 deletions
|
@ -463,9 +463,11 @@ (define tcc-boot0
|
||||||
(version "0.9.26-1103-g6e62e0e")
|
(version "0.9.26-1103-g6e62e0e")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (list (string-append "mirror://gnu/guix/mirror/tcc-"
|
||||||
"http://lilypond.org/janneke/mes/20191117/"
|
version ".tar.gz")
|
||||||
"/tcc-" version ".tar.gz"))
|
(string-append
|
||||||
|
"http://lilypond.org/janneke/mes/20191117/"
|
||||||
|
"/tcc-" version ".tar.gz")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1qbybw7mxbgkv3sazvz1v7c8byq998vk8f1h25ik8w3d2l63lxng"))))
|
"1qbybw7mxbgkv3sazvz1v7c8byq998vk8f1h25ik8w3d2l63lxng"))))
|
||||||
|
@ -3008,8 +3010,10 @@ (define gnumach-headers-boot0
|
||||||
(source (bootstrap-origin
|
(source (bootstrap-origin
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://lilypond.org/janneke/hurd/"
|
(uri (list (string-append "mirror://gnu/guix/mirror/gnumach-"
|
||||||
"gnumach-" version ".tar.gz"))
|
version ".tar.gz")
|
||||||
|
(string-append "https://lilypond.org/janneke/hurd/"
|
||||||
|
"gnumach-" version ".tar.gz")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"006i0zgwy81vxarpfm12vip4q6i5mgmi5mmy5ldvxp5hx9h3l0zg")))))
|
"006i0zgwy81vxarpfm12vip4q6i5mgmi5mmy5ldvxp5hx9h3l0zg")))))
|
||||||
|
@ -3033,8 +3037,10 @@ (define hurd-source-boot0
|
||||||
(bootstrap-origin
|
(bootstrap-origin
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://lilypond.org/janneke/hurd/"
|
(uri (list (string-append "mirror://gnu/guix/mirror/hurd-v"
|
||||||
"hurd-v" version ".tar.gz"))
|
version ".tar.gz")
|
||||||
|
(string-append "https://lilypond.org/janneke/hurd/"
|
||||||
|
"hurd-v" version ".tar.gz")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0bq2q2jisxcy0kgcm6rz0z2fddwxxm7azsama7li28a2m08kdpzy"))))))
|
"0bq2q2jisxcy0kgcm6rz0z2fddwxxm7azsama7li28a2m08kdpzy"))))))
|
||||||
|
|
Loading…
Reference in a new issue