about summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2014-11-15 17:58:40 +0100
committerMoritz Ulrich <moritz@tarn-vedra.de>2014-11-15 17:58:40 +0100
commitc227e8f25957ee07accdfd3a5ed406c0f8d74ccf (patch)
treee061208631500ffa1b7b445f173512704d5604b7 /pkgs/applications/networking/mailreaders
parentfdd9d132ca0802e08adbaa0d947fc353f633dee1 (diff)
downloadnixlib-c227e8f25957ee07accdfd3a5ed406c0f8d74ccf.tar
nixlib-c227e8f25957ee07accdfd3a5ed406c0f8d74ccf.tar.gz
nixlib-c227e8f25957ee07accdfd3a5ed406c0f8d74ccf.tar.bz2
nixlib-c227e8f25957ee07accdfd3a5ed406c0f8d74ccf.tar.lz
nixlib-c227e8f25957ee07accdfd3a5ed406c0f8d74ccf.tar.xz
nixlib-c227e8f25957ee07accdfd3a5ed406c0f8d74ccf.tar.zst
nixlib-c227e8f25957ee07accdfd3a5ed406c0f8d74ccf.zip
notmuch: Update to 0.19.
This commit also enables manpages.
Diffstat (limited to 'pkgs/applications/networking/mailreaders')
-rw-r--r--pkgs/applications/networking/mailreaders/notmuch/default.nix17
1 files changed, 11 insertions, 6 deletions
diff --git a/pkgs/applications/networking/mailreaders/notmuch/default.nix b/pkgs/applications/networking/mailreaders/notmuch/default.nix
index 75eca10d9aa5..a5af880728a1 100644
--- a/pkgs/applications/networking/mailreaders/notmuch/default.nix
+++ b/pkgs/applications/networking/mailreaders/notmuch/default.nix
@@ -1,17 +1,18 @@
-{ fetchurl, stdenv, bash, emacs, fixDarwinDylibNames,
-  gdb, glib, gmime, gnupg,
-  pkgconfig, talloc, xapian
+{ fetchurl, stdenv, bash, emacs, fixDarwinDylibNames
+, gdb, glib, gmime, gnupg
+, pkgconfig, talloc, xapian
+, sphinx, python
 }:
 
 stdenv.mkDerivation rec {
-  name = "notmuch-0.18.2";
+  name = "notmuch-0.19";
 
   src = fetchurl {
     url = "http://notmuchmail.org/releases/${name}.tar.gz";
-    sha256 = "175wzrw1mfpl4h72n9ims66zn5l34zn2dn857vraj2i5w7z7p7z9";
+    sha256 = "1szf6c44g209pcjq5nvfhlp3nzcm3lrcwv4spsxmwy13hiaccvrr";
   };
 
-  buildInputs = [ bash emacs gdb glib gmime gnupg pkgconfig talloc xapian ]
+  buildInputs = [ bash emacs gdb glib gmime gnupg pkgconfig talloc xapian sphinx python ]
     ++ stdenv.lib.optionals stdenv.isDarwin [ fixDarwinDylibNames ];
 
   patchPhase = ''
@@ -29,6 +30,10 @@ stdenv.mkDerivation rec {
     done
   '';
 
+  postInstall = ''
+    make install-man
+  '';
+
   preFixup = if stdenv.isDarwin then
     ''
       prg="$out/bin/notmuch"