summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders/notmuch
diff options
context:
space:
mode:
authorPuck Meerburg <puck@puckipedia.com>2019-08-31 17:27:31 +0000
committerPuck Meerburg <puck@puckipedia.com>2019-09-01 08:40:15 +0000
commit21fac085c7f20eabaa5676a6b472cef14af9b436 (patch)
tree14b2c8958c657488c8ac50c9234c455c8329c5eb /pkgs/applications/networking/mailreaders/notmuch
parentaeeed6a5176df8e44098761e74e64a13d88b8aa9 (diff)
downloadnixpkgs-21fac085c7f20eabaa5676a6b472cef14af9b436.tar
nixpkgs-21fac085c7f20eabaa5676a6b472cef14af9b436.tar.gz
nixpkgs-21fac085c7f20eabaa5676a6b472cef14af9b436.tar.bz2
nixpkgs-21fac085c7f20eabaa5676a6b472cef14af9b436.tar.lz
nixpkgs-21fac085c7f20eabaa5676a6b472cef14af9b436.tar.xz
nixpkgs-21fac085c7f20eabaa5676a6b472cef14af9b436.tar.zst
nixpkgs-21fac085c7f20eabaa5676a6b472cef14af9b436.zip
notmuch: 0.28.4 -> 0.29.1
Release notes at https://notmuchmail.org/news/release-0.29/ and
 https://notmuchmail.org/news/release-0.29.1/
Diffstat (limited to 'pkgs/applications/networking/mailreaders/notmuch')
-rw-r--r--pkgs/applications/networking/mailreaders/notmuch/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/networking/mailreaders/notmuch/default.nix b/pkgs/applications/networking/mailreaders/notmuch/default.nix
index f6e6a8d747e..7e3f4713284 100644
--- a/pkgs/applications/networking/mailreaders/notmuch/default.nix
+++ b/pkgs/applications/networking/mailreaders/notmuch/default.nix
@@ -12,7 +12,7 @@
 with stdenv.lib;
 
 stdenv.mkDerivation rec {
-  version = "0.28.4"; # not really, git
+  version = "0.29.1";
   pname = "notmuch";
 
   passthru = {
@@ -21,8 +21,8 @@ stdenv.mkDerivation rec {
   };
 
   src = fetchurl {
-    url = "https://notmuchmail.org/releases/${pname}-${version}.tar.gz";
-    sha256 = "1jjnhs4xs4gksvg0a9qn68rxrj41im5bh58snka2pkj20nxwmcds";
+    url = "https://notmuchmail.org/releases/${pname}-${version}.tar.xz";
+    sha256 = "0rg3rwghd3wivf3bmqcqpkkd5c779ld5hi363zjcw5fl6a7gqilq";
   };
 
   nativeBuildInputs = [ pkgconfig ];
@@ -68,7 +68,7 @@ stdenv.mkDerivation rec {
   in ''
     ln -s ${test-database} test/test-databases/database-v1.tar.xz
   '';
-  doCheck = !stdenv.hostPlatform.isDarwin && (versionAtLeast gmime.version "3.0");
+  doCheck = !stdenv.hostPlatform.isDarwin && (versionAtLeast gmime.version "3.0.3");
   checkTarget = "test";
   checkInputs = [
     which dtach openssl bash
@@ -83,7 +83,7 @@ stdenv.mkDerivation rec {
     description = "Mail indexer";
     homepage    = https://notmuchmail.org/;
     license     = licenses.gpl3;
-    maintainers = with maintainers; [ flokli the-kenny ];
+    maintainers = with maintainers; [ flokli puckipedia the-kenny ];
     platforms   = platforms.unix;
   };
 }