me
/
guix
Archived
1
0
Fork 0

gnu: mutt: Enable Autocrypt support.

* gnu/packages/mail.scm (mutt)[inputs]: Add libidn2 and sqlite.
[arguments]<#:configure-flags>: Add "--enable-autocrypt", "--with-sqlite3" and
"--with-idn2".

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Ivan Vilata-i-Balaguer 2020-01-13 20:44:05 -05:00 committed by Ludovic Courtès
parent e3d80f3c1c
commit 892be267ee
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 6 additions and 1 deletions

View File

@ -397,9 +397,11 @@ aliasing facilities to work just as they would on normal mail.")
`(("cyrus-sasl" ,cyrus-sasl)
("gdbm" ,gdbm)
("gpgme" ,gpgme)
("libidn2" ,libidn2)
("ncurses" ,ncurses)
("openssl" ,openssl)
("perl" ,perl)))
("perl" ,perl)
("sqlite" ,sqlite)))
(arguments
`(#:configure-flags '("--enable-smtp"
"--enable-imap"
@ -407,8 +409,11 @@ aliasing facilities to work just as they would on normal mail.")
"--enable-gpgme"
"--enable-hcache" ; for header caching
"--enable-sidebar"
"--enable-autocrypt"
"--with-ssl"
"--with-sasl"
"--with-sqlite3" ; required for Autocrypt
"--with-idn2" ; recommended for Autocrypt
;; so that mutt does not check whether the path
;; exists, which it does not in the chroot
"--with-mailpath=/var/mail")))