mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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>
This commit is contained in:
parent
e3d80f3c1c
commit
892be267ee
1 changed files with 6 additions and 1 deletions
|
@ -397,9 +397,11 @@ aliasing facilities to work just as they would on normal mail.")
|
||||||
`(("cyrus-sasl" ,cyrus-sasl)
|
`(("cyrus-sasl" ,cyrus-sasl)
|
||||||
("gdbm" ,gdbm)
|
("gdbm" ,gdbm)
|
||||||
("gpgme" ,gpgme)
|
("gpgme" ,gpgme)
|
||||||
|
("libidn2" ,libidn2)
|
||||||
("ncurses" ,ncurses)
|
("ncurses" ,ncurses)
|
||||||
("openssl" ,openssl)
|
("openssl" ,openssl)
|
||||||
("perl" ,perl)))
|
("perl" ,perl)
|
||||||
|
("sqlite" ,sqlite)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("--enable-smtp"
|
`(#:configure-flags '("--enable-smtp"
|
||||||
"--enable-imap"
|
"--enable-imap"
|
||||||
|
@ -407,8 +409,11 @@ aliasing facilities to work just as they would on normal mail.")
|
||||||
"--enable-gpgme"
|
"--enable-gpgme"
|
||||||
"--enable-hcache" ; for header caching
|
"--enable-hcache" ; for header caching
|
||||||
"--enable-sidebar"
|
"--enable-sidebar"
|
||||||
|
"--enable-autocrypt"
|
||||||
"--with-ssl"
|
"--with-ssl"
|
||||||
"--with-sasl"
|
"--with-sasl"
|
||||||
|
"--with-sqlite3" ; required for Autocrypt
|
||||||
|
"--with-idn2" ; recommended for Autocrypt
|
||||||
;; so that mutt does not check whether the path
|
;; so that mutt does not check whether the path
|
||||||
;; exists, which it does not in the chroot
|
;; exists, which it does not in the chroot
|
||||||
"--with-mailpath=/var/mail")))
|
"--with-mailpath=/var/mail")))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue