33796f3738
clucene-core upgraded to 0.9.20 clucene-contrib removed (can't find any version later than 0.9.16a and don't know whether it's compatible with new clucene-core) kde4: old staff removed, will add new tonight svn path=/nixpkgs/trunk/; revision=9679
16 lines
418 B
Nix
16 lines
418 B
Nix
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;
|
|
};
|
|
}
|