nixpkgs/pkgs/development/libraries/xapian/1_2.nix
Florian Friesdorf bd71b36628 notmuch with inheritable-tags-hack for thread muting
the muted tag is supposed to be inherited by messages of the same
thread, effictely muting a thread. A muted thread will not show up in
your inbox anymore. Current implementation is hackish but functional.

big thank you to amdragon!

svn path=/nixpkgs/trunk/; revision=26878
2011-04-18 17:19:44 +00:00

19 lines
430 B
Nix

{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation {
name = "xapian-1.2.4";
src = fetchurl {
url = http://oligarchy.co.uk/xapian/1.2.4/xapian-core-1.2.4.tar.gz;
sha256 = "0665c02aa1a6cccc071d4f2b426ac0feb6f4f8f0e50da720ce375ae6d3d6f348";
};
buildInputs = [zlib];
meta = {
description = "Xapian Probabilistic Information Retrieval library";
homepage = "http://xapian.org";
license = "GPLv2";
};
}