diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-03-17 10:40:19 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-03-17 10:40:19 +0100 |
commit | cfa4de760a9c56c05f77670a1b9e004b94cef599 (patch) | |
tree | bc4de16e1847c26b0b2d66d7a9055e8e3b37cb60 /gnu/packages/gnupg.scm | |
parent | 67a3c8ed15f62a39f8684ee9c8dda024de9296a9 (diff) | |
download | patches-cfa4de760a9c56c05f77670a1b9e004b94cef599.tar patches-cfa4de760a9c56c05f77670a1b9e004b94cef599.tar.gz |
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.
Diffstat (limited to 'gnu/packages/gnupg.scm')
-rw-r--r-- | gnu/packages/gnupg.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index 9b6019007e..c22eb57fc7 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)))))) |