nixpkgs/pkgs/applications/networking/mailreaders/notmuch/default.nix
Florian Friesdorf f03892655b 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
2011-02-13 01:34:49 +00:00

24 lines
554 B
Nix

{ 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
};
}