about summary refs log tree commit diff
path: root/pkgs/development/libraries/clucene-core/default.nix
blob: 24e133a5de3c4361ef8c7f5c76d1ff11ecf3f6a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
args: with args;
stdenv.mkDerivation rec {
	name = "clucene-core-0.9.20";

	src = fetchurl {
		url = "mirror://sf/clucene/${name}.tar.bz2";
		sha256 = "1hwq3b4qp1dgygmypgpg3blj68wnksq2rbqkwyxvl5dldn12q7rg";
	};
	configureFlags = "--disable-static";

	meta = {
		description = "CLucene is a port of the very popular Java Lucene text search engine API. Core package.";
		homepage = http://clucene.sourceforge.net;
	};
}