Improving a bit the configure options for mutt:

Enable debug
Fix a copy and paste error in --without-sasl

svn path=/nixpkgs/trunk/; revision=23654
This commit is contained in:
Lluís Batlle i Rossell 2010-09-06 07:17:20 +00:00
parent 29db2ca0c9
commit f01245ee4a

View File

@ -31,6 +31,10 @@ stdenv.mkDerivation {
configureFlags = [ configureFlags = [
"--with-mailpath=" "--enable-smtp" "--with-mailpath=" "--enable-smtp"
# This allows calls with "-d N", that output debug info into ~/.muttdebug*
"--enable-debug"
# The next allows building mutt without having anything setgid # The next allows building mutt without having anything setgid
# set by the installer, and removing the need for the group 'mail' # 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 # I set the value 'mailbox' because it is a default in the configure script
@ -38,7 +42,7 @@ stdenv.mkDerivation {
(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")
(if saslSupport then "--with-sasl" else "--without-imap") (if saslSupport then "--with-sasl" else "--without-sasl")
]; ];
meta = { meta = {