mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
import: elpa: Work around Guile 3.0.[5-7] compiler bug.
Fixes <https://issues.guix.gnu.org/49006>. Reported by Xinglu Chen <public@yoctocell.xyz>. * guix/import/elpa.scm (elpa-package->sexp)[melpa-recipe]: Add call to 'identity'.
This commit is contained in:
parent
86ed003990
commit
d21353adea
1 changed files with 4 additions and 3 deletions
|
@ -337,9 +337,10 @@ (define* (elpa-package->sexp pkg #:optional license repo)
|
|||
type '<elpa-package>'."
|
||||
|
||||
(define melpa-recipe
|
||||
(if (eq? repo 'melpa)
|
||||
(package-name->melpa-recipe (elpa-package-name pkg))
|
||||
#f))
|
||||
;; XXX: Call 'identity' to work around a Guile 3.0.[5-7] compiler bug:
|
||||
;; <https://bugs.gnu.org/48368>.
|
||||
(and (eq? (identity repo) 'melpa)
|
||||
(package-name->melpa-recipe (elpa-package-name pkg))))
|
||||
|
||||
(define name (elpa-package-name pkg))
|
||||
|
||||
|
|
Loading…
Reference in a new issue