self: Fix package names for compilation with Guile 2.0.
Reported by Ricardo Wurmus. * guix/self.scm (specification->package): Add guile2.0-{json,git,ssh}. (guile-for-build): Use 'module-ref' for Guile 2.0.
This commit is contained in:
parent
69447b6393
commit
e69dd8443a
1 changed files with 7 additions and 2 deletions
|
@ -88,7 +88,11 @@ (define specification->package
|
|||
("bzip2" (ref '(gnu packages compression) 'bzip2))
|
||||
("xz" (ref '(gnu packages compression) 'xz))
|
||||
("guix" (ref '(gnu packages package-management)
|
||||
'guix-register)))))
|
||||
'guix-register))
|
||||
("guile2.0-json" (ref '(gnu packages guile) 'guile2.0-json))
|
||||
("guile2.0-ssh" (ref '(gnu packages ssh) 'guile2.0-ssh))
|
||||
("guile2.0-git" (ref '(gnu packages guile) 'guile2.0-git))
|
||||
(_ #f)))) ;no such package
|
||||
|
||||
|
||||
;;;
|
||||
|
@ -576,7 +580,8 @@ (define canonical-package ;soft reference
|
|||
(canonical-package (module-ref (resolve-interface '(gnu packages guile))
|
||||
'guile-2.2/fixed)))
|
||||
("2.0"
|
||||
(canonical-package (specification->package "guile@2.0")))))
|
||||
(module-ref (resolve-interface '(gnu packages guile))
|
||||
'guile-2.0))))
|
||||
|
||||
(define* (guix-derivation source version
|
||||
#:optional (guile-version (effective-version)))
|
||||
|
|
Loading…
Reference in a new issue