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

55 lines
1.5 KiB
Nix
Raw Normal View History

2017-05-07 03:39:08 +01:00
{ stdenv, fetchFromGitHub, which, autoreconfHook, ncurses, perl
, cyrus_sasl, gss, gpgme, kerberos, libidn, notmuch, openssl, lmdb, libxslt, docbook_xsl, docbook_xml_dtd_42 }:
stdenv.mkDerivation rec {
2017-10-13 18:33:18 +01:00
version = "20171013";
name = "neomutt-${version}";
src = fetchFromGitHub {
2017-05-07 03:39:08 +01:00
owner = "neomutt";
repo = "neomutt";
rev = "neomutt-${version}";
2017-10-13 18:33:18 +01:00
sha256 = "0zn8imqfa76bxpkpy111c4vn6vjarbxc8gqv6m18qkksk0ly26l1";
};
nativeBuildInputs = [ autoreconfHook docbook_xsl docbook_xml_dtd_42 libxslt.bin which ];
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-06-02 14:41:03 +01:00
notmuch openssl perl lmdb
];
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 02:59:33 +00:00
"--with-lmdb"
# 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";
configureScript = "./prepare";
2017-06-02 14:41:03 +01:00
enableParallelBuilding = true;
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;
};
}