me
/
guix
Archived
1
0
Fork 0

gnu: commencement: Add gawk-boot0.

* gnu/packages/commencement.scm (gawk-boot0): New variable.
(%boot0-inputs): Add it.
master
Jan Nieuwenhuizen 2019-12-11 17:24:21 +01:00
parent f8d1a95ea4
commit 4bfce839f9
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 17 additions and 0 deletions

View File

@ -2730,11 +2730,28 @@ exec " gcc "/bin/" program
#:validate-runpath? #f
,@(package-arguments file)))))
(define gawk-boot0
(package
(inherit patch)
(source (bootstrap-origin (package-source gawk)))
(name "gawk-boot0")
(native-inputs '())
(inputs
`(("make" ,gnu-make-boot0)
,@(%bootstrap-inputs+toolchain)))
(arguments
`(#:tests? #f
#:implicit-inputs? #f
#:guile ,%bootstrap-guile
#:strip-binaries? #f
#:validate-runpath? #f))))
(define (%boot0-inputs)
`(("make" ,gnu-make-boot0)
("diffutils" ,diffutils-boot0)
("findutils" ,findutils-boot0)
("file" ,file-boot0)
("gawk" ,gawk-boot0)
,@(%bootstrap-inputs+toolchain)))
(define* (boot-triplet #:optional (system (%current-system)))