Adding smtp support to mutt

svn path=/nixpkgs/trunk/; revision=21037
This commit is contained in:
Lluís Batlle i Rossell 2010-04-12 22:10:15 +00:00
parent b6fe7e6d41
commit 165bc84831
1 changed files with 5 additions and 1 deletions

View File

@ -21,7 +21,11 @@ stdenv.mkDerivation {
(if sslSupport then openssl else null)
];
configureFlags = [
"--with-mailpath="
"--with-mailpath=" "--enable-smtp"
# The next allows building mutt without having anything setgid
# set by the installer, and removing the need for the group 'mail'
# I set the value 'mailbox' because it is a default in the configure script
"--with-homespool=mailbox"
(if headerCache then "--enable-hcache" else "--disable-hcache")
(if sslSupport then "--with-ssl" else "--without-ssl")
(if imapSupport then "--enable-imap" else "--disable-imap")