about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorrnhmjoj <micheleguerinirocco@me.com>2016-09-19 03:53:03 +0200
committerrnhmjoj <micheleguerinirocco@me.com>2016-09-19 06:33:28 +0200
commit5c0e73e8608796ca2e3120c38a9579bb9313ca01 (patch)
tree75030009b403ec630d7ef2e28288e98ec75792c5 /pkgs/applications
parent1781e955779397e4c39d406909823841210df962 (diff)
downloadnixlib-5c0e73e8608796ca2e3120c38a9579bb9313ca01.tar
nixlib-5c0e73e8608796ca2e3120c38a9579bb9313ca01.tar.gz
nixlib-5c0e73e8608796ca2e3120c38a9579bb9313ca01.tar.bz2
nixlib-5c0e73e8608796ca2e3120c38a9579bb9313ca01.tar.lz
nixlib-5c0e73e8608796ca2e3120c38a9579bb9313ca01.tar.xz
nixlib-5c0e73e8608796ca2e3120c38a9579bb9313ca01.tar.zst
nixlib-5c0e73e8608796ca2e3120c38a9579bb9313ca01.zip
mutt: 1.6.2 -> 1.7.0
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/mailreaders/mutt/default.nix25
1 files changed, 5 insertions, 20 deletions
diff --git a/pkgs/applications/networking/mailreaders/mutt/default.nix b/pkgs/applications/networking/mailreaders/mutt/default.nix
index 0be5e0bd57eb..d5bda113ba8c 100644
--- a/pkgs/applications/networking/mailreaders/mutt/default.nix
+++ b/pkgs/applications/networking/mailreaders/mutt/default.nix
@@ -1,16 +1,14 @@
-{ stdenv, fetchurl, fetchpatch, ncurses, which, perl, autoreconfHook
+{ stdenv, fetchurl, ncurses, which, perl
 , gdbm ? null
 , openssl ? null
 , cyrus_sasl ? null
 , gpgme ? null
-, aclocal ? null
 , headerCache  ? true
 , sslSupport   ? true
 , saslSupport  ? true
 , gpgmeSupport ? true
 , imapSupport  ? true
-, withSidebar  ? false
-, withTrash    ? false
+, withSidebar  ? true
 }:
 
 assert headerCache  -> gdbm       != null;
@@ -22,11 +20,11 @@ with stdenv.lib;
 
 stdenv.mkDerivation rec {
   name = "mutt-${version}";
-  version = "1.6.2";
+  version = "1.7.0";
 
   src = fetchurl {
     url = "http://ftp.mutt.org/pub/mutt/${name}.tar.gz";
-    sha256 = "13hxmji7v9m2agmvzrs7gzx8s3c9jiwrv7pbkr7z1kc6ckq2xl65";
+    sha256 = "0idkamdiwj9fgqaz1vzkfg78cnmkzp74skv0ibw2xjfq6ds9hghx";
   };
 
   buildInputs =
@@ -34,8 +32,7 @@ stdenv.mkDerivation rec {
     ++ optional headerCache  gdbm
     ++ optional sslSupport   openssl
     ++ optional saslSupport  cyrus_sasl
-    ++ optional gpgmeSupport gpgme
-    ++ optional withSidebar  autoreconfHook;
+    ++ optional gpgmeSupport gpgme;
 
   configureFlags = [
     (enableFeature headerCache  "hcache")
@@ -60,18 +57,6 @@ stdenv.mkDerivation rec {
   ] ++ optional sslSupport  "--with-ssl"
     ++ optional saslSupport "--with-sasl";
 
-  patches =
-    optional withTrash (fetchpatch {
-      name = "trash.patch";
-      url = "https://aur.archlinux.org/cgit/aur.git/plain/trash.patch?h=mutt-sidebar";
-      sha256 = "1hrib9jk28mqd02nzv0sx01jfdabzvnwcc5qjc3810zfglzc1nql";
-    }) ++
-    optional withSidebar (fetchpatch {
-      name = "sidebar.patch";
-      url = "https://aur.archlinux.org/cgit/aur.git/plain/sidebar.patch?h=mutt-sidebar";
-      sha256 = "1l63wj7kw41jrh00mcxdw4p4vrbc9wld42s99liw8kz2aclymq5m";
-    });
-
   meta = {
     description = "A small but very powerful text-based mail client";
     homepage = http://www.mutt.org;