2011-02-14 06:01:33 +01:00
|
|
|
{ fetchgit, stdenv, emacs, glib, gmime, pkgconfig, talloc, xapian }:
|
2011-02-13 02:34:49 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-02-14 06:01:33 +01:00
|
|
|
name = "notmuch-0.5-20110203";
|
2011-02-13 02:34:49 +01:00
|
|
|
|
2011-02-14 06:01:33 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://notmuchmail.org/git/notmuch";
|
|
|
|
rev = "62725a5b59625c164512465af5b3912396b61e8b";
|
|
|
|
sha256 = "39b339f47cee1938d76e046cccfd7c3e5e5d37a578e40007a5d43adfc4cd41ce";
|
2011-02-13 02:34:49 +01:00
|
|
|
};
|
|
|
|
|
2011-02-13 02:56:32 +01:00
|
|
|
buildInputs = [ emacs glib gmime pkgconfig talloc xapian ];
|
2011-02-13 02:34:49 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Notmuch -- The mail indexer";
|
|
|
|
|
|
|
|
longDescription = "";
|
|
|
|
|
|
|
|
license = "GPLv3";
|
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.chaoflow ];
|
|
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
|
|
|
};
|
|
|
|
}
|