guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/08: gnu: mutt: Enable Autocrypt support.


From: guix-commits
Subject: 08/08: gnu: mutt: Enable Autocrypt support.
Date: Tue, 4 Feb 2020 18:22:08 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 892be267eee99f33920cd5f7307b7798edc1d8b0
Author: Ivan Vilata-i-Balaguer <address@hidden>
AuthorDate: Mon Jan 13 20:44:05 2020 -0500

    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 <address@hidden>
---
 gnu/packages/mail.scm | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 0538342..67aa079 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -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")))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]