notmuch -- The mail indexer

configure fails so far:
Checking for Xapian development files... Yes (1.0.23).
Checking for GMime development files... No.
Checking for talloc development files... No.
Checking for valgrind development files... No (but that's fine).
Checking if emacs is available... Yes.

svn path=/nixpkgs/trunk/; revision=25930
This commit is contained in:
Florian Friesdorf 2011-02-13 01:34:49 +00:00
parent f4dc1b73f2
commit f03892655b
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ fetchurl, stdenv, emacs, gmime, talloc, xapian }:
stdenv.mkDerivation rec {
name = "notmuch-0.5";
src = fetchurl {
url = "http://notmuchmail.org/releases/${name}.tar.gz";
sha256 = "c7eeb95c89c5b9cb22cc0b90abce5f923c20c982d607bf32829c989e905ff1a9";
};
buildInputs = [ emacs gmime talloc xapian ];
meta = {
description = "Notmuch -- The mail indexer";
longDescription = "";
license = "GPLv3";
maintainers = [ stdenv.lib.maintainers.chaoflow ];
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
};
}

View file

@ -6404,6 +6404,8 @@ let
netsurfBrowser = netsurf.browser;
netsurf = recurseIntoAttrs (import ../applications/networking/browsers/netsurf { inherit pkgs; });
notmuch = callPackage ../applications/networking/mailreaders/notmuch { };
nvi = callPackage ../applications/editors/nvi { };
ocrad = callPackage ../applications/graphics/ocrad { };