gnu: commencement: Add patch-boot0.

* gnu/packages/commencement.scm (patch-boot0): New variable: patch without
lzip dependency (via ed).
(%boot0-inputs): Add it.
This commit is contained in:
Jan Nieuwenhuizen 2019-11-23 08:48:03 +01:00
parent fdab061994
commit 31a3db77e9
No known key found for this signature in database
GPG key ID: F3C1A0D9C1D65273

View file

@ -2746,6 +2746,22 @@ (define gawk-boot0
#:strip-binaries? #f
#:validate-runpath? #f))))
(define patch-boot0
(package
(inherit patch)
(source (bootstrap-origin (package-source patch)))
(name "patch-boot0")
(native-inputs '())
(inputs
`(("make" ,gnu-make-boot0)
,@(%bootstrap-inputs+toolchain)))
(arguments
`(#:tests? #f ; merge test fails
#:implicit-inputs? #f
#:guile ,%bootstrap-guile
#:strip-binaries? #f
#:validate-runpath? #f))))
(define sed-boot0
(package
(inherit sed)
@ -2767,6 +2783,7 @@ (define (%boot0-inputs)
("findutils" ,findutils-boot0)
("file" ,file-boot0)
("gawk" ,gawk-boot0)
("patch" ,patch-boot0)
("sed" ,sed-boot0)
,@(%bootstrap-inputs+toolchain)))