2018-02-15 14:58:49 +00:00
|
|
|
{ stdenv, fetchFromGitHub, gettext, makeWrapper, tcl, which, writeScript
|
|
|
|
, ncurses, perl , cyrus_sasl, gss, gpgme, kerberos, libidn, notmuch, openssl
|
|
|
|
, lmdb, libxslt, docbook_xsl, docbook_xml_dtd_42, mime-types }:
|
2016-04-15 22:01:05 +01:00
|
|
|
|
2017-10-14 06:17:50 +01:00
|
|
|
let
|
|
|
|
muttWrapper = writeScript "mutt" ''
|
|
|
|
#!${stdenv.shell} -eu
|
|
|
|
|
|
|
|
echo 'The neomutt project has renamed the main binary from `mutt` to `neomutt`.'
|
|
|
|
echo ""
|
|
|
|
echo 'This wrapper is provided for compatibility purposes only. You should start calling `neomutt` instead.'
|
|
|
|
echo ""
|
|
|
|
read -p 'Press any key to launch NeoMutt...' -n1 -s
|
|
|
|
exec neomutt "$@"
|
|
|
|
'';
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2018-02-15 14:58:49 +00:00
|
|
|
version = "20171215";
|
2016-04-15 22:01:05 +01:00
|
|
|
name = "neomutt-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-05-07 03:39:08 +01:00
|
|
|
owner = "neomutt";
|
|
|
|
repo = "neomutt";
|
|
|
|
rev = "neomutt-${version}";
|
2018-02-15 14:58:49 +00:00
|
|
|
sha256 = "1c7vjl5cl0k41vrxp6l1sj72idz70r2rgaxa2m1yir6zb6qsrsd8";
|
2016-04-15 22:01:05 +01:00
|
|
|
};
|
|
|
|
|
2017-06-02 14:41:03 +01:00
|
|
|
buildInputs = [
|
2017-06-29 03:43:09 +01:00
|
|
|
cyrus_sasl gss gpgme kerberos libidn ncurses
|
2017-11-13 17:29:05 +00:00
|
|
|
notmuch openssl perl lmdb
|
2017-11-18 09:15:20 +00:00
|
|
|
mime-types
|
2017-06-02 14:41:03 +01:00
|
|
|
];
|
|
|
|
|
2017-11-13 17:29:05 +00:00
|
|
|
nativeBuildInputs = [
|
2018-02-15 14:58:49 +00:00
|
|
|
docbook_xsl docbook_xml_dtd_42 gettext libxslt.bin makeWrapper tcl which
|
2017-11-13 17:29:05 +00:00
|
|
|
];
|
2017-10-14 06:17:50 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
for f in doc/*.{xml,xsl}* ; do
|
|
|
|
substituteInPlace $f \
|
|
|
|
--replace http://docbook.sourceforge.net/release/xsl/current ${docbook_xsl}/share/xml/docbook-xsl \
|
|
|
|
--replace http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd ${docbook_xml_dtd_42}/xml/dtd/docbook/docbookx.dtd
|
|
|
|
done
|
2017-11-16 02:41:48 +00:00
|
|
|
|
|
|
|
# allow neomutt to map attachments to their proper mime.types if specified wrongly
|
2017-11-18 09:15:20 +00:00
|
|
|
# and use a far more comprehensive list than the one shipped with neomutt
|
2017-11-16 02:41:48 +00:00
|
|
|
substituteInPlace sendlib.c \
|
2017-11-18 09:15:20 +00:00
|
|
|
--replace /etc/mime.types ${mime-types}/etc/mime.types
|
2017-10-14 06:17:50 +01:00
|
|
|
'';
|
|
|
|
|
2016-04-15 22:01:05 +01:00
|
|
|
configureFlags = [
|
2018-02-15 14:58:49 +00:00
|
|
|
"--gpgme"
|
|
|
|
"--gss"
|
|
|
|
"--lmdb"
|
|
|
|
"--notmuch"
|
|
|
|
"--ssl"
|
|
|
|
"--sasl"
|
2017-10-14 06:17:50 +01:00
|
|
|
"--with-homespool=mailbox"
|
|
|
|
"--with-mailpath="
|
2016-04-15 22:01:05 +01:00
|
|
|
# Look in $PATH at runtime, instead of hardcoding /usr/bin/sendmail
|
|
|
|
"ac_cv_path_SENDMAIL=sendmail"
|
|
|
|
];
|
|
|
|
|
2017-09-22 13:03:35 +01:00
|
|
|
# Fix missing libidn in mutt;
|
|
|
|
# this fix is ugly since it links all binaries in mutt against libidn
|
|
|
|
# like pgpring, pgpewrap, ...
|
|
|
|
NIX_LDFLAGS = "-lidn";
|
|
|
|
|
2017-10-14 06:17:50 +01:00
|
|
|
postInstall = ''
|
|
|
|
cp ${muttWrapper} $out/bin/mutt
|
2017-11-13 17:01:28 +00:00
|
|
|
wrapProgram "$out/bin/neomutt" --prefix PATH : "$out/lib/neomutt"
|
2017-10-14 06:17:50 +01:00
|
|
|
'';
|
2017-06-02 14:41:03 +01:00
|
|
|
|
2016-04-15 22:01:05 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A small but very powerful text-based mail client";
|
2017-09-09 02:30:41 +01:00
|
|
|
homepage = http://www.neomutt.org;
|
2017-09-14 07:42:25 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2017-06-29 03:43:09 +01:00
|
|
|
maintainers = with maintainers; [ cstrahan erikryb jfrankenau vrthra ];
|
2017-09-09 02:30:41 +01:00
|
|
|
platforms = platforms.unix;
|
2016-04-15 22:01:05 +01:00
|
|
|
};
|
|
|
|
}
|