2009-12-25 21:02:31 +01:00
|
|
|
{ stdenv, fetchurl, ncurses, which, perl
|
2007-08-06 14:18:55 +02:00
|
|
|
, sslSupport ? true
|
|
|
|
, imapSupport ? true
|
2008-05-13 21:21:09 +02:00
|
|
|
, headerCache ? true
|
2010-04-13 00:21:01 +02:00
|
|
|
, saslSupport ? true
|
2008-05-13 21:21:09 +02:00
|
|
|
, gdbm ? null
|
2007-08-06 14:18:55 +02:00
|
|
|
, openssl ? null
|
2010-04-13 00:21:01 +02:00
|
|
|
, cyrus_sasl ? null
|
2007-08-06 14:18:55 +02:00
|
|
|
}:
|
|
|
|
|
2008-05-13 21:21:09 +02:00
|
|
|
assert headerCache -> gdbm != null;
|
2007-08-06 14:18:55 +02:00
|
|
|
assert sslSupport -> openssl != null;
|
2010-04-13 00:21:01 +02:00
|
|
|
assert saslSupport -> cyrus_sasl != null;
|
2007-08-05 20:23:53 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-12-25 21:02:31 +01:00
|
|
|
name = "mutt-1.5.20";
|
2007-08-05 20:23:53 +02:00
|
|
|
src = fetchurl {
|
2009-12-25 21:02:31 +01:00
|
|
|
url = ftp://ftp.mutt.org/mutt/devel/mutt-1.5.20.tar.gz;
|
|
|
|
sha256 = "15m7m419r82awx4mr4nam25m0kpg0bs9vw1z4a4mrzvlkl3zqycm";
|
2007-08-05 20:23:53 +02:00
|
|
|
};
|
2007-08-06 14:18:55 +02:00
|
|
|
buildInputs = [
|
2009-12-25 21:02:31 +01:00
|
|
|
ncurses which perl
|
2008-05-13 21:21:09 +02:00
|
|
|
(if headerCache then gdbm else null)
|
2007-08-06 14:18:55 +02:00
|
|
|
(if sslSupport then openssl else null)
|
2010-04-13 00:21:01 +02:00
|
|
|
(if saslSupport then cyrus_sasl else null)
|
2007-08-06 14:18:55 +02:00
|
|
|
];
|
|
|
|
configureFlags = [
|
2010-04-13 00:10:15 +02:00
|
|
|
"--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"
|
2008-05-13 21:21:09 +02:00
|
|
|
(if headerCache then "--enable-hcache" else "--disable-hcache")
|
2007-08-06 14:18:55 +02:00
|
|
|
(if sslSupport then "--with-ssl" else "--without-ssl")
|
|
|
|
(if imapSupport then "--enable-imap" else "--disable-imap")
|
2010-04-13 00:21:01 +02:00
|
|
|
(if saslSupport then "--with-sasl" else "--without-imap")
|
2007-08-06 14:18:55 +02:00
|
|
|
];
|
2008-01-30 20:49:42 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.mutt.org;
|
|
|
|
};
|
2007-08-05 20:23:53 +02:00
|
|
|
}
|
2008-05-13 21:21:09 +02:00
|
|
|
|