nixpkgs-suyu/pkgs/applications/networking/mailreaders/neomutt/default.nix

62 lines
1.6 KiB
Nix
Raw Normal View History

2017-05-07 04:39:08 +02:00
{ stdenv, fetchFromGitHub, which, autoreconfHook, ncurses, perl
2017-06-29 04:43:09 +02:00
, cyrus_sasl, gss, gpgme, kerberos, libidn, notmuch, openssl, lmdb, libxslt, docbook_xsl }:
stdenv.mkDerivation rec {
2017-09-14 08:42:25 +02:00
version = "20170912";
name = "neomutt-${version}";
src = fetchFromGitHub {
2017-05-07 04:39:08 +02:00
owner = "neomutt";
repo = "neomutt";
rev = "neomutt-${version}";
2017-09-14 08:42:25 +02:00
sha256 = "0qndszmaihly3pp2wqiqm31nxbv9ys3j05kzffaqhzngfilmar9g";
};
2017-06-02 15:41:03 +02:00
nativeBuildInputs = [ autoreconfHook docbook_xsl libxslt.bin which ];
buildInputs = [
2017-06-29 04:43:09 +02:00
cyrus_sasl gss gpgme kerberos libidn ncurses
2017-06-02 15:41:03 +02:00
notmuch openssl perl lmdb
];
postPatch = ''
for f in doc/*.xsl ; do
substituteInPlace $f \
--replace http://docbook.sourceforge.net/release/xsl/current ${docbook_xsl}/share/xml/docbook-xsl
done
'';
configureFlags = [
"--enable-debug"
"--enable-gpgme"
"--enable-notmuch"
"--with-homespool=mailbox"
"--with-gss"
"--with-mailpath="
"--with-ssl"
"--with-sasl"
"--with-curses"
"--with-idn"
2016-12-30 03:59:33 +01:00
"--with-lmdb"
# Look in $PATH at runtime, instead of hardcoding /usr/bin/sendmail
"ac_cv_path_SENDMAIL=sendmail"
];
2017-09-22 14:03:35 +02: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";
configureScript = "./prepare";
2017-06-02 15:41:03 +02:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "A small but very powerful text-based mail client";
2017-09-09 03:30:41 +02:00
homepage = http://www.neomutt.org;
2017-09-14 08:42:25 +02:00
license = licenses.gpl2Plus;
2017-06-29 04:43:09 +02:00
maintainers = with maintainers; [ cstrahan erikryb jfrankenau vrthra ];
2017-09-09 03:30:41 +02:00
platforms = platforms.unix;
};
}