2011-10-25 18:46:26 +01:00
|
|
|
{ stdenv, fetchurl, ncurses, which, perl
|
2007-08-06 13:18:55 +01:00
|
|
|
, sslSupport ? true
|
|
|
|
, imapSupport ? true
|
2008-05-13 20:21:09 +01:00
|
|
|
, headerCache ? true
|
2010-04-12 23:21:01 +01:00
|
|
|
, saslSupport ? true
|
2011-10-25 18:46:26 +01:00
|
|
|
, gpgmeSupport ? true
|
2008-05-13 20:21:09 +01:00
|
|
|
, gdbm ? null
|
2007-08-06 13:18:55 +01:00
|
|
|
, openssl ? null
|
2010-04-12 23:21:01 +01:00
|
|
|
, cyrus_sasl ? null
|
2011-10-25 18:46:26 +01:00
|
|
|
, gpgme ? null
|
2007-08-06 13:18:55 +01:00
|
|
|
}:
|
|
|
|
|
2008-05-13 20:21:09 +01:00
|
|
|
assert headerCache -> gdbm != null;
|
2007-08-06 13:18:55 +01:00
|
|
|
assert sslSupport -> openssl != null;
|
2010-04-12 23:21:01 +01:00
|
|
|
assert saslSupport -> cyrus_sasl != null;
|
2007-08-05 19:23:53 +01:00
|
|
|
|
2012-11-14 21:50:22 +00:00
|
|
|
let
|
|
|
|
gpgmePatch = fetchurl {
|
|
|
|
# Solution for gpgme >= 1.2: http://dev.mutt.org/trac/ticket/3300
|
|
|
|
url = "http://dev.mutt.org/trac/raw-attachment/ticket/3300/mutt-1.5.21-gpgme-init.patch";
|
|
|
|
sha256 = "1qa1c8gns4q3as1h2lk3x4di2k3hr804ar7xlc6xh9r0zjhzmlk4";
|
|
|
|
};
|
|
|
|
in
|
2011-08-09 21:21:05 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mutt-1.5.21";
|
2010-07-24 09:50:30 +01:00
|
|
|
|
2007-08-05 19:23:53 +01:00
|
|
|
src = fetchurl {
|
2011-08-09 21:21:05 +01:00
|
|
|
url = "ftp://ftp.mutt.org/mutt/devel/${name}.tar.gz";
|
|
|
|
sha256 = "1864cwz240gh0zy56fb47qqzwyf6ghg01037rb4p2kqgimpg6h91";
|
2007-08-05 19:23:53 +01:00
|
|
|
};
|
2010-07-24 09:50:30 +01:00
|
|
|
|
2012-11-14 21:50:22 +00:00
|
|
|
patches = [ (if gpgmeSupport then gpgmePatch else null) ];
|
|
|
|
|
2007-08-06 13:18:55 +01:00
|
|
|
buildInputs = [
|
2011-10-25 18:46:26 +01:00
|
|
|
ncurses which perl
|
2008-05-13 20:21:09 +01:00
|
|
|
(if headerCache then gdbm else null)
|
2007-08-06 13:18:55 +01:00
|
|
|
(if sslSupport then openssl else null)
|
2010-04-12 23:21:01 +01:00
|
|
|
(if saslSupport then cyrus_sasl else null)
|
2011-10-25 18:46:26 +01:00
|
|
|
(if gpgmeSupport then gpgme else null)
|
2007-08-06 13:18:55 +01:00
|
|
|
];
|
2010-07-24 09:50:30 +01:00
|
|
|
|
2007-08-06 13:18:55 +01:00
|
|
|
configureFlags = [
|
2010-04-12 23:10:15 +01:00
|
|
|
"--with-mailpath=" "--enable-smtp"
|
2010-09-06 08:17:20 +01:00
|
|
|
|
|
|
|
# This allows calls with "-d N", that output debug info into ~/.muttdebug*
|
2011-10-25 18:46:26 +01:00
|
|
|
"--enable-debug"
|
|
|
|
|
|
|
|
"--enable-pop" "--enable-imap"
|
2010-09-06 08:17:20 +01:00
|
|
|
|
2010-04-12 23:10:15 +01:00
|
|
|
# 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 20:21:09 +01:00
|
|
|
(if headerCache then "--enable-hcache" else "--disable-hcache")
|
2007-08-06 13:18:55 +01:00
|
|
|
(if sslSupport then "--with-ssl" else "--without-ssl")
|
|
|
|
(if imapSupport then "--enable-imap" else "--disable-imap")
|
2010-09-06 08:17:20 +01:00
|
|
|
(if saslSupport then "--with-sasl" else "--without-sasl")
|
2011-10-25 18:46:26 +01:00
|
|
|
(if gpgmeSupport then "--enable-gpgme" else "--disable-gpgme")
|
2007-08-06 13:18:55 +01:00
|
|
|
];
|
2008-01-30 19:49:42 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.mutt.org;
|
|
|
|
};
|
2007-08-05 19:23:53 +01:00
|
|
|
}
|
2008-05-13 20:21:09 +01:00
|
|
|
|