gnu: commencement: %boot0-inputs: Soft-code Scheme-only additions.

* gnu/packages/commencement.scm (%boot0-inputs)[x86-linux,x86_64-linux]: Include
*-boot0 additions for Scheme-only bootstrap.
This commit is contained in:
Jan Nieuwenhuizen 2020-02-19 15:33:44 +01:00
parent 0c54440b79
commit 0a3e8536d9
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 10 additions and 7 deletions

View File

@ -2669,16 +2669,19 @@ exec " gcc "/bin/" program
,@(package-arguments tar)))))
(define (%boot0-inputs)
`(("bzip2" ,bzip2-boot0)
("coreutils" ,coreutils-boot0)
`(,@(match (%current-system)
((or "i686-linux" "x86_64-linux")
`(("bzip2" ,bzip2-boot0)
("coreutils" ,coreutils-boot0)
("gawk" ,gawk-boot0)
("patch" ,patch-boot0)
("sed" ,sed-boot0)
("tar" ,tar-boot0)))
(_ '()))
("make" ,gnu-make-boot0)
("diffutils" ,diffutils-boot0)
("findutils" ,findutils-boot0)
("file" ,file-boot0)
("gawk" ,gawk-boot0)
("make" ,gnu-make-boot0)
("patch" ,patch-boot0)
("sed" ,sed-boot0)
("tar" ,tar-boot0)
,@(%bootstrap-inputs+toolchain)))
(define* (boot-triplet #:optional (system (%current-system)))