diff options
author | Leo Famulari <leo@famulari.name> | 2016-03-10 17:08:17 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-03-21 16:48:39 -0400 |
commit | b0bb01369849274c297b7a3bf00cbe7f49414076 (patch) | |
tree | ed54264af20c32738cabb0507d5f11a07935e6bc /gnu/packages/mail.scm | |
parent | 506379664aba7c8609ada0fa528e5358c5426808 (diff) | |
download | guix-b0bb01369849274c297b7a3bf00cbe7f49414076.tar guix-b0bb01369849274c297b7a3bf00cbe7f49414076.tar.gz |
gnu: mutt: Enable header caching.
* gnu/packages/mail.scm (mutt)[inputs]: Add gdbm.
[arguments]: Pass --enable-hcache to #:configure-flags.
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 5bb633d66f..1022ac7015 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -189,6 +189,7 @@ aliasing facilities to work just as they would on normal mail.") (build-system gnu-build-system) (inputs `(("cyrus-sasl" ,cyrus-sasl) + ("gdbm" ,gdbm) ("gpgme" ,gpgme) ("ncurses" ,ncurses) ("openssl" ,openssl) @@ -198,6 +199,7 @@ aliasing facilities to work just as they would on normal mail.") "--enable-imap" "--enable-pop" "--enable-gpgme" + "--enable-hcache" ; for header caching "--with-ssl" "--with-sasl" ;; so that mutt does not check whether the path |