about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2018-01-10 13:52:07 +0000
committerGitHub <noreply@github.com>2018-01-10 13:52:07 +0000
commitf77a5ba72bebb4003b14674bce15baa30bb80092 (patch)
tree298411040633068746f00a6d7f0ea086b0b2d9b0 /pkgs/applications/networking
parentc72a05b88da2c3afa7def30bd9287f6664846c23 (diff)
parent32d33177ea5b9791b7ec2c1264327aacfd0f0a4f (diff)
downloadnixlib-f77a5ba72bebb4003b14674bce15baa30bb80092.tar
nixlib-f77a5ba72bebb4003b14674bce15baa30bb80092.tar.gz
nixlib-f77a5ba72bebb4003b14674bce15baa30bb80092.tar.bz2
nixlib-f77a5ba72bebb4003b14674bce15baa30bb80092.tar.lz
nixlib-f77a5ba72bebb4003b14674bce15baa30bb80092.tar.xz
nixlib-f77a5ba72bebb4003b14674bce15baa30bb80092.tar.zst
nixlib-f77a5ba72bebb4003b14674bce15baa30bb80092.zip
Merge pull request #33680 from flokli/notmuch
notmuch: 0.25.3 -> 0.26
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/mailreaders/notmuch/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/applications/networking/mailreaders/notmuch/default.nix b/pkgs/applications/networking/mailreaders/notmuch/default.nix
index 079e1b7927ca..0c0f55e63370 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.25.3";
+  version = "0.26";
   name = "notmuch-${version}";
 
   passthru = {
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "http://notmuchmail.org/releases/${name}.tar.gz";
-    sha256 = "1fyx20rjpwbf2j1v5fpa5s0rjnwhcgvijzh2qyinp8rlbh1qxmab";
+    sha256 = "1pvn1n7giv8n3xlazi3wpscdqhd2yak0fgv68aj23myr5bnr9s6k";
   };
 
   nativeBuildInputs = [ pkgconfig ];
@@ -46,9 +46,8 @@ stdenv.mkDerivation rec {
         "{}" ";"
 
     for src in \
-      crypto.c \
-      notmuch-config.c \
-      emacs/notmuch-crypto.el
+      util/crypto.c \
+      notmuch-config.c
     do
       substituteInPlace "$src" \
         --replace \"gpg\" \"${gnupg}/bin/gpg\"
@@ -97,7 +96,7 @@ stdenv.mkDerivation rec {
     description = "Mail indexer";
     homepage    = https://notmuchmail.org/;
     license     = licenses.gpl3;
-    maintainers = with maintainers; [ chaoflow garbas the-kenny ];
+    maintainers = with maintainers; [ chaoflow flokli garbas the-kenny ];
     platforms   = platforms.unix;
   };
 }