mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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 @@ (define bzip2-boot0
|
|||
#:implicit-inputs? #f
|
||||
,@(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
|
||||
(package
|
||||
(inherit diffutils)
|
||||
|
@ -2807,6 +2822,7 @@ (define tar-boot0
|
|||
|
||||
(define (%boot0-inputs)
|
||||
`(("bzip2" ,bzip2-boot0)
|
||||
("coreutils" ,coreutils-boot0)
|
||||
("diffutils" ,diffutils-boot0)
|
||||
("findutils" ,findutils-boot0)
|
||||
("file" ,file-boot0)
|
||||
|
|
Loading…
Reference in a new issue