mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: commencement: Add tar-boot0.
* gnu/packages/commencement.scm (tar-boot0): New variable. (%boot0-inputs): Add it.
This commit is contained in:
parent
2e41da947b
commit
1d313d6d88
1 changed files with 16 additions and 0 deletions
|
@ -2790,6 +2790,21 @@ (define sed-boot0
|
|||
#:guile ,%bootstrap-guile
|
||||
,@(package-arguments sed)))))
|
||||
|
||||
(define tar-boot0
|
||||
(package
|
||||
(inherit tar)
|
||||
(name "tar-boot0")
|
||||
(source (bootstrap-origin (package-source tar)))
|
||||
(native-inputs '())
|
||||
(inputs
|
||||
`(("make" ,gnu-make-boot0)
|
||||
,@(%bootstrap-inputs+toolchain)))
|
||||
(arguments
|
||||
`(#:implicit-inputs? #f
|
||||
#:tests? #f
|
||||
#:guile ,%bootstrap-guile
|
||||
,@(package-arguments tar)))))
|
||||
|
||||
(define (%boot0-inputs)
|
||||
`(("bzip2" ,bzip2-boot0)
|
||||
("diffutils" ,diffutils-boot0)
|
||||
|
@ -2799,6 +2814,7 @@ (define (%boot0-inputs)
|
|||
("make" ,gnu-make-boot0)
|
||||
("patch" ,patch-boot0)
|
||||
("sed" ,sed-boot0)
|
||||
("tar" ,tar-boot0)
|
||||
,@(%bootstrap-inputs+toolchain)))
|
||||
|
||||
(define* (boot-triplet #:optional (system (%current-system)))
|
||||
|
|
Loading…
Reference in a new issue