mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
distro: Add missing `package-with-bootstrap-guile'.
* distro/packages/base.scm (binutils-final): Add missing `package-with-bootstrap-guile'.
This commit is contained in:
parent
d1acf1fd4a
commit
a48dddfe9c
1 changed files with 8 additions and 7 deletions
|
@ -876,13 +876,14 @@ (define %boot2-inputs
|
|||
,@(fold alist-delete %boot1-inputs '("libc" "gcc"))))
|
||||
|
||||
(define binutils-final
|
||||
(package (inherit binutils)
|
||||
(arguments
|
||||
(lambda (system)
|
||||
`(#:guile ,%bootstrap-guile
|
||||
#:implicit-inputs? #f
|
||||
,@(package-arguments binutils))))
|
||||
(inputs %boot2-inputs)))
|
||||
(package-with-bootstrap-guile
|
||||
(package (inherit binutils)
|
||||
(arguments
|
||||
(lambda (system)
|
||||
`(#:guile ,%bootstrap-guile
|
||||
#:implicit-inputs? #f
|
||||
,@(package-arguments binutils))))
|
||||
(inputs %boot2-inputs))))
|
||||
|
||||
(define-public gcc-final
|
||||
;; The final GCC.
|
||||
|
|
Loading…
Reference in a new issue