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

View File

@ -21,7 +21,11 @@ stdenv.mkDerivation {
(if sslSupport then openssl else null) (if sslSupport then openssl else null)
]; ];
configureFlags = [ 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 headerCache then "--enable-hcache" else "--disable-hcache")
(if sslSupport then "--with-ssl" else "--without-ssl") (if sslSupport then "--with-ssl" else "--without-ssl")
(if imapSupport then "--enable-imap" else "--disable-imap") (if imapSupport then "--enable-imap" else "--disable-imap")