gnu: commencement: Add coreutils-boot0.
(coreutils-boot0): New variable. * gnu/packages/commencement.scm (%boot0-inputs): Add it.
This commit is contained in:
parent
1d313d6d88
commit
cacb6b903d
1 changed files with 16 additions and 0 deletions
|
@ -2685,6 +2685,21 @@ exec " gcc "/bin/" program
|
||||||
#:implicit-inputs? #f
|
#:implicit-inputs? #f
|
||||||
,@(package-arguments bzip2)))))
|
,@(package-arguments bzip2)))))
|
||||||
|
|
||||||
|
(define coreutils-boot0
|
||||||
|
(package
|
||||||
|
(inherit coreutils)
|
||||||
|
(source (bootstrap-origin (package-source coreutils)))
|
||||||
|
(name "coreutils-boot0")
|
||||||
|
(native-inputs `())
|
||||||
|
(inputs
|
||||||
|
`(("make" ,gnu-make-boot0)
|
||||||
|
,@(%bootstrap-inputs+toolchain)))
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f
|
||||||
|
#:implicit-inputs? #f
|
||||||
|
#:guile ,%bootstrap-guile
|
||||||
|
,@(package-arguments coreutils)))))
|
||||||
|
|
||||||
(define diffutils-boot0
|
(define diffutils-boot0
|
||||||
(package
|
(package
|
||||||
(inherit diffutils)
|
(inherit diffutils)
|
||||||
|
@ -2807,6 +2822,7 @@ exec " gcc "/bin/" program
|
||||||
|
|
||||||
(define (%boot0-inputs)
|
(define (%boot0-inputs)
|
||||||
`(("bzip2" ,bzip2-boot0)
|
`(("bzip2" ,bzip2-boot0)
|
||||||
|
("coreutils" ,coreutils-boot0)
|
||||||
("diffutils" ,diffutils-boot0)
|
("diffutils" ,diffutils-boot0)
|
||||||
("findutils" ,findutils-boot0)
|
("findutils" ,findutils-boot0)
|
||||||
("file" ,file-boot0)
|
("file" ,file-boot0)
|
||||||
|
|
Reference in a new issue