Merge pull request #26956 from jfrankenau/neomutt-20170609

neomutt: 20170602 -> 20170609
This commit is contained in:
Gabriel Ebner 2017-07-01 12:00:13 +02:00 committed by GitHub
commit 6acb707f35

View File

@ -1,20 +1,20 @@
{ stdenv, fetchFromGitHub, which, autoreconfHook, ncurses, perl { stdenv, fetchFromGitHub, which, autoreconfHook, ncurses, perl
, cyrus_sasl, gdbm, gpgme, kerberos, libidn, notmuch, openssl, lmdb, libxslt, docbook_xsl }: , cyrus_sasl, gss, gpgme, kerberos, libidn, notmuch, openssl, lmdb, libxslt, docbook_xsl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "20170602"; version = "20170609";
name = "neomutt-${version}"; name = "neomutt-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "neomutt"; owner = "neomutt";
repo = "neomutt"; repo = "neomutt";
rev = "neomutt-${version}"; rev = "neomutt-${version}";
sha256 = "0rpvxmv10ypl7la4nmp0s02ixmm9g5pn9g9ms8ygzsix9pa86w45"; sha256 = "015dd6rphvqdmnv477f1is22l7n5gvcvyblbyp0ggbp64650k0bz";
}; };
nativeBuildInputs = [ autoreconfHook docbook_xsl libxslt.bin which ]; nativeBuildInputs = [ autoreconfHook docbook_xsl libxslt.bin which ];
buildInputs = [ buildInputs = [
cyrus_sasl gdbm gpgme kerberos libidn ncurses cyrus_sasl gss gpgme kerberos libidn ncurses
notmuch openssl perl lmdb notmuch openssl perl lmdb
]; ];
@ -28,23 +28,13 @@ stdenv.mkDerivation rec {
configureFlags = [ configureFlags = [
"--enable-debug" "--enable-debug"
"--enable-gpgme" "--enable-gpgme"
"--enable-hcache"
"--enable-imap"
"--enable-notmuch" "--enable-notmuch"
"--enable-pgp"
"--enable-pop"
"--enable-sidebar"
"--enable-keywords"
"--enable-smtp"
"--enable-nntp"
"--enable-compressed"
"--with-homespool=mailbox" "--with-homespool=mailbox"
"--with-gss" "--with-gss"
"--with-mailpath=" "--with-mailpath="
"--with-ssl" "--with-ssl"
"--with-sasl" "--with-sasl"
"--with-curses" "--with-curses"
"--with-regex"
"--with-idn" "--with-idn"
"--with-lmdb" "--with-lmdb"
@ -61,6 +51,6 @@ stdenv.mkDerivation rec {
homepage = http://www.neomutt.org; homepage = http://www.neomutt.org;
license = stdenv.lib.licenses.gpl2Plus; license = stdenv.lib.licenses.gpl2Plus;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ cstrahan vrthra erikryb ]; maintainers = with maintainers; [ cstrahan erikryb jfrankenau vrthra ];
}; };
} }