mbakke pushed a commit to branch core-updates
in repository guix.

commit cfa4de760a9c56c05f77670a1b9e004b94cef599
Author: Marius Bakke <[email protected]>
AuthorDate: Tue Mar 17 10:40:19 2020 +0100

    gnu: guile-gcrypt: Use the correct Guile version.
    
    This is a follow-up to commit b6bee63bed4f013064c0d902e7c8b83ed7514ade.
    
    * gnu/packages/gnupg.scm (guile-gcrypt)[native-inputs]: Remove GUILE-2.2.  
Add
    GUILE-3.0.
    (guile2.2-gcrypt)[native-inputs]: Adjust accordingly.
---
 gnu/packages/gnupg.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index 9b60190..c22eb57 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -491,7 +491,7 @@ gpgpme starting with version 1.7.")
        ("autoconf" ,autoconf)
        ("automake" ,automake)
        ("texinfo" ,texinfo)
-       ("guile" ,guile-2.2)))
+       ("guile" ,guile-3.0)))
     (inputs
      `(("guile" ,guile-3.0)
        ("libgcrypt" ,libgcrypt)))
@@ -518,6 +518,9 @@ interface (FFI) of Guile.")
   (package
     (inherit guile-gcrypt)
     (name "guile2.2-gcrypt")
+    (native-inputs
+     `(("guile" ,guile-2.2)
+       ,@(alist-delete "guile" (package-native-inputs guile-gcrypt))))
     (inputs
      `(("guile" ,guile-2.2)
        ,@(alist-delete "guile" (package-inputs guile-gcrypt))))))

Reply via email to