Author: viric
Date: Mon Sep  6 07:17:20 2010
New Revision: 23654
URL: https://svn.nixos.org/websvn/nix/?rev=23654&sc=1

Log:
Improving a bit the configure options for mutt:
Enable debug
Fix a copy and paste error in --without-sasl

Modified:
   nixpkgs/trunk/pkgs/applications/networking/mailreaders/mutt/default.nix

Modified: 
nixpkgs/trunk/pkgs/applications/networking/mailreaders/mutt/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/applications/networking/mailreaders/mutt/default.nix     
Sun Sep  5 23:37:54 2010        (r23653)
+++ nixpkgs/trunk/pkgs/applications/networking/mailreaders/mutt/default.nix     
Mon Sep  6 07:17:20 2010        (r23654)
@@ -31,6 +31,10 @@
   
   configureFlags = [
     "--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
     # 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
@@ -38,7 +42,7 @@
     (if headerCache then "--enable-hcache" else "--disable-hcache")
     (if sslSupport then "--with-ssl" else "--without-ssl")
     (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 = {
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to