mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: guile-gcrypt: Use the correct Guile version.
This is a follow-up to commit b6bee63bed
.
* gnu/packages/gnupg.scm (guile-gcrypt)[native-inputs]: Remove GUILE-2.2. Add
GUILE-3.0.
(guile2.2-gcrypt)[native-inputs]: Adjust accordingly.
This commit is contained in:
parent
67a3c8ed15
commit
cfa4de760a
1 changed files with 4 additions and 1 deletions
|
@ -491,7 +491,7 @@ (define-public guile-gcrypt
|
||||||
("autoconf" ,autoconf)
|
("autoconf" ,autoconf)
|
||||||
("automake" ,automake)
|
("automake" ,automake)
|
||||||
("texinfo" ,texinfo)
|
("texinfo" ,texinfo)
|
||||||
("guile" ,guile-2.2)))
|
("guile" ,guile-3.0)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("guile" ,guile-3.0)
|
`(("guile" ,guile-3.0)
|
||||||
("libgcrypt" ,libgcrypt)))
|
("libgcrypt" ,libgcrypt)))
|
||||||
|
@ -518,6 +518,9 @@ (define-public guile2.2-gcrypt
|
||||||
(package
|
(package
|
||||||
(inherit guile-gcrypt)
|
(inherit guile-gcrypt)
|
||||||
(name "guile2.2-gcrypt")
|
(name "guile2.2-gcrypt")
|
||||||
|
(native-inputs
|
||||||
|
`(("guile" ,guile-2.2)
|
||||||
|
,@(alist-delete "guile" (package-native-inputs guile-gcrypt))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("guile" ,guile-2.2)
|
`(("guile" ,guile-2.2)
|
||||||
,@(alist-delete "guile" (package-inputs guile-gcrypt))))))
|
,@(alist-delete "guile" (package-inputs guile-gcrypt))))))
|
||||||
|
|
Loading…
Reference in a new issue