summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2020-04-05 14:04:22 +0200
committerRicardo Wurmus <rekado@elephly.net>2020-04-05 14:05:25 +0200
commitdcb33b50435c4aae226e9f5cb8dc6b00c6c74905 (patch)
tree407103ac3981f795e3241e426ae5d64241c3df17
parent56806eab392e9fc8d04bdf29a1b4001d56b577ea (diff)
Depend on Guile Gcrypt.
-rw-r--r--configure.ac5
-rw-r--r--guix.scm2
2 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 2152ca9..e515de1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -36,6 +36,11 @@ if test "x$have_mailutils" != "xyes"; then
AC_MSG_ERROR([Mailutils is missing; please install it.])
fi
+GUILE_MODULE_AVAILABLE([have_gcrypt], [(gcrypt base64)])
+if test "x$have_gcrypt" != "xyes"; then
+ AC_MSG_ERROR([Guile Gcrypt is missing; please install it.])
+fi
+
dnl GUILE_MODULE_AVAILABLE([have_fibers], [(fibers web server)])
dnl if test "x$have_fibers" != "xyes"; then
dnl AC_MSG_ERROR([Guile fibers is missing; please install it.])
diff --git a/guix.scm b/guix.scm
index 80bdb53..f01921e 100644
--- a/guix.scm
+++ b/guix.scm
@@ -28,6 +28,7 @@
(guix build-system gnu)
(gnu packages)
(gnu packages autotools)
+ (gnu packages gnupg)
(gnu packages guile)
(gnu packages guile-xyz)
(gnu packages mail)
@@ -41,6 +42,7 @@
(inputs
`(("guile-debbugs" ,guile-debbugs)
("guile-email" ,guile-email)
+ ("guile-gcrypt" ,guile-gcrypt)
("guile-json" ,guile-json-3)
;("guile-fibers" ,guile-fibers)
("guile-sqlite3" ,guile-sqlite3)