mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
packages: Use 'guile-for-grafts' for grafting.
The call to 'guile-for-grafts' had been inadvertently replaced by a call
to 'default-guile' in commit 9e5812ac59
.
Unfortunately Guile 3.0.7 still occasionally segfaults while grafting
so we still need 2.0 here.
* guix/packages.scm (package->derivation, package->cross-derivation):
Use 'guile-for-grafts' instead of 'default-guile'.
This commit is contained in:
parent
8e220c2332
commit
4bd69850df
1 changed files with 2 additions and 2 deletions
|
@ -1770,7 +1770,7 @@ (define* (package->derivation package
|
|||
(return drv))
|
||||
(grafts
|
||||
(mlet %store-monad ((guile (package->derivation
|
||||
(default-guile)
|
||||
(guile-for-grafts)
|
||||
system #:graft? #f)))
|
||||
(graft-derivation* drv grafts
|
||||
#:system system
|
||||
|
@ -1793,7 +1793,7 @@ (define* (package->cross-derivation package target
|
|||
(return drv))
|
||||
(grafts
|
||||
(mlet %store-monad ((guile (package->derivation
|
||||
(default-guile)
|
||||
(guile-for-grafts)
|
||||
system #:graft? #f)))
|
||||
(graft-derivation* drv grafts
|
||||
#:system system
|
||||
|
|
Loading…
Reference in a new issue