gnu: commencement: Add bzip2-boot0.

* gnu/packages/commencement.scm (bzip2-boot0): New variable.
(%boot0-inputs): Add it.
This commit is contained in:
Jan Nieuwenhuizen 2019-11-23 09:11:57 +01:00
parent 31a3db77e9
commit 2e41da947b
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 15 additions and 1 deletions

View File

@ -2672,6 +2672,19 @@ exec " gcc "/bin/" program
(native-inputs '()) ; no need for 'pkg-config'
(inputs (%bootstrap-inputs+toolchain))))
(define bzip2-boot0
(package
(inherit bzip2)
(name "bzip2-boot0")
(native-inputs `())
(inputs
`(("make" ,gnu-make-boot0)
,@(%bootstrap-inputs+toolchain)))
(arguments
`(#:guile ,%bootstrap-guile
#:implicit-inputs? #f
,@(package-arguments bzip2)))))
(define diffutils-boot0
(package
(inherit diffutils)
@ -2778,11 +2791,12 @@ exec " gcc "/bin/" program
,@(package-arguments sed)))))
(define (%boot0-inputs)
`(("make" ,gnu-make-boot0)
`(("bzip2" ,bzip2-boot0)
("diffutils" ,diffutils-boot0)
("findutils" ,findutils-boot0)
("file" ,file-boot0)
("gawk" ,gawk-boot0)
("make" ,gnu-make-boot0)
("patch" ,patch-boot0)
("sed" ,sed-boot0)
,@(%bootstrap-inputs+toolchain)))