summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabio Natali <me@fabionatali.com>2024-04-15 08:25:33 +0100
committerGuix Patches Tester <>2024-04-17 14:15:26 +0200
commit150fc95280eb83963e0a6b26a35227e3ad2d3a96 (patch)
treeeb93b21da3e078ec9755893784c2b8bd10c36160
parent4fe04c375462697cc47ab1e7d9aef282a727e0cd (diff)
downloadguix-patches-issue-70390.tar
guix-patches-issue-70390.tar.gz
gnu: notmuch: Add sfsexp dependency.issue-70390
sfsexp is a C/C++ library for the manipulation (read, parse, modify, and create) of symbolic expressions. In an environment where sfsexp is available, Notmuch will compile with support for a S-expression-based query format. This commit is to add sfsexp as a Notmuch dependency and therefore to add S-exp support. Change-Id: Ic3b4a30b2672ad690d66b283e9bdc8e2197f97a7
-rw-r--r--gnu/packages/mail.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index e0fbd0a5ff..2b5561f706 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -81,6 +81,7 @@
#:use-module (gnu packages bash)
#:use-module (gnu packages bison)
#:use-module (gnu packages boost)
+ #:use-module (gnu packages c)
#:use-module (gnu packages calendar)
#:use-module (gnu packages check)
#:use-module (gnu packages compression)
@@ -1414,6 +1415,7 @@ invoking @command{notifymuch} from the post-new hook.")
(("/bin/sh") sh))))))))
(native-inputs
(list bash-completion
+ git
pkg-config
python
python-docutils
@@ -1427,7 +1429,7 @@ invoking @command{notifymuch} from the post-new hook.")
man-db
perl))
(inputs
- (list glib gmime talloc xapian zlib))
+ (list glib gmime sfsexp talloc xapian zlib))
(home-page "https://notmuchmail.org/")
(synopsis "Thread-based email index, search, and tagging")
(description