Merge pull request #16131 from vrthra/neomutt

neomutt: 20160502 -> 20160530
This commit is contained in:
Moritz Ulrich 2016-06-11 11:39:06 +02:00 committed by GitHub
commit 47d400a1cc
1 changed files with 5 additions and 3 deletions

View File

@ -2,14 +2,14 @@
, cyrus_sasl, gdbm, gpgme, kerberos, libidn, notmuch, openssl }: , cyrus_sasl, gdbm, gpgme, kerberos, libidn, notmuch, openssl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "20160502"; version = "20160530";
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 = "0r7nn7yjhf3d7nc89gwpgrq45gqiwsrcaw1pkgmvrd16p0jhga1m"; sha256 = "17v9qnd7dd7rgz5bq5qqf0b1v59ba6jlqkbmwngx4hal6zm9b9wi";
}; };
buildInputs = buildInputs =
@ -25,7 +25,9 @@ stdenv.mkDerivation rec {
"--enable-pgp" "--enable-pgp"
"--enable-pop" "--enable-pop"
"--enable-sidebar" "--enable-sidebar"
"--enable-keywords"
"--enable-smtp" "--enable-smtp"
"--enable-nntp"
"--with-homespool=mailbox" "--with-homespool=mailbox"
"--with-gss" "--with-gss"
"--with-mailpath=" "--with-mailpath="
@ -46,6 +48,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; [ hiberno cstrahan ]; maintainers = with maintainers; [ hiberno cstrahan vrthra ];
}; };
} }