mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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:
parent
fdab061994
commit
31a3db77e9
1 changed files with 17 additions and 0 deletions
|
@ -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)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue