mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: commencement: Add hello-mesboot.
* gnu/packages/commencement.scm (hello-mesboot): New variable.
This commit is contained in:
parent
9c4a021211
commit
079b2cf3a2
1 changed files with 22 additions and 0 deletions
|
@ -2224,6 +2224,28 @@ (define xz-mesboot
|
|||
"ac_cv_have_decl_optreset=no"
|
||||
"CPPFLAGS=-D__GNUC__=1")))))
|
||||
|
||||
(define hello-mesboot
|
||||
;; Check for Scheme-only bootstrap.
|
||||
(package
|
||||
(inherit hello)
|
||||
(name "hello-mesboot")
|
||||
(supported-systems '("i686-linux" "x86_64-linux"))
|
||||
(inputs '())
|
||||
(propagated-inputs '())
|
||||
(native-inputs (%boot-mesboot2-inputs))
|
||||
(arguments
|
||||
`(#:implicit-inputs? #f
|
||||
#:guile ,%bootstrap-guile
|
||||
#:parallel-build? #f
|
||||
;; checking for grep that handles long lines and -e...
|
||||
;; configure: error: no acceptable grep could be found
|
||||
#:configure-flags '("ac_cv_path_GREP=grep")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(invoke "./hello"))))))))
|
||||
|
||||
(define binutils-mesboot
|
||||
(package
|
||||
(inherit binutils-mesboot0)
|
||||
|
|
Loading…
Reference in a new issue