me
/
guix
Archived
1
0
Fork 0

gnu: commencement: Add coreutils-mesboot.

* gnu/packages/commencement.scm (coreutils-mesboot): New variable.
(%boot-mesboot6-inputs): New variable.
master
Jan Nieuwenhuizen 2019-11-22 22:36:22 +01:00
parent d7e8467f97
commit 15af8e1d9d
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 19 additions and 0 deletions

View File

@ -2616,6 +2616,25 @@ exec " gcc "/bin/" program
("gcc" ,gcc-mesboot)
,@(fold alist-delete (%boot-mesboot4-inputs) '("gcc" "gcc-wrapper"))))
(define-public coreutils-mesboot
(package
(inherit coreutils)
(name "coreutils-mesboot")
(source (bootstrap-origin (package-source coreutils)))
(native-inputs (%boot-mesboot5-inputs))
(supported-systems '("i686-linux" "x86_64-linux"))
(inputs '())
(propagated-inputs '())
(arguments
`(#:implicit-inputs? #f
#:guile ,%bootstrap-guile
#:tests? #f))))
(define (%boot-mesboot6-inputs)
`(("coreutils" ,coreutils-mesboot)
,@(fold alist-delete (%boot-mesboot5-inputs)
'("coreutils" "kernel-headers"))))
(define m4-mesboot
(package
(inherit m4)