diff options
author | Fabio Natali <me@fabionatali.com> | 2024-04-15 08:25:33 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-05-13 19:31:20 +0100 |
commit | b1de64812a0a9e30507fb1ea44611779149c32cc (patch) | |
tree | 825b809647ac4591f843e7ca0609146af875cc43 /gnu/packages/mail.scm | |
parent | 99181ad9810569eb528ffd4d7596284bc201016e (diff) | |
download | guix-b1de64812a0a9e30507fb1ea44611779149c32cc.tar.gz |
gnu: notmuch: Add sfsexp input.
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. * gnu/packages/mail.scm (notmuch)[native-inputs]: Add git-minimal/pinned. [inputs]: Add sfsexp. Change-Id: Ic3b4a30b2672ad690d66b283e9bdc8e2197f97a7 Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 3eccb160ed..b15d891609 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -82,6 +82,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) @@ -1466,11 +1467,12 @@ invoking @command{notifymuch} from the post-new hook.") emacs-no-x ; -minimal lacks libxml, needed for some tests which dtach + git-minimal/pinned gnupg 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 |