2011-02-13 02:56:32 +01:00
|
|
|
{ fetchurl, stdenv, emacs, glib, gmime, pkgconfig, talloc, xapian }:
|
2011-02-13 02:34:49 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "notmuch-0.5";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://notmuchmail.org/releases/${name}.tar.gz";
|
|
|
|
sha256 = "c7eeb95c89c5b9cb22cc0b90abce5f923c20c982d607bf32829c989e905ff1a9";
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
};
|
|
|
|
}
|