2009-09-08 14:38:47 +01:00
|
|
|
{stdenv, fetchurl}:
|
2007-08-05 14:54:42 +01:00
|
|
|
|
2009-04-22 00:18:09 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2009-09-08 14:38:47 +01:00
|
|
|
name = "clucene-core-0.9.21b";
|
2007-08-05 14:54:42 +01:00
|
|
|
|
2009-04-22 00:18:09 +01:00
|
|
|
src = fetchurl {
|
2013-01-14 11:00:32 +00:00
|
|
|
url = "mirror://sourceforge/clucene/${name}.tar.bz2";
|
2009-09-08 14:38:47 +01:00
|
|
|
sha256 = "202ee45af747f18642ae0a088d7c4553521714a511a1a9ec99b8144cf9928317";
|
2009-04-22 00:18:09 +01:00
|
|
|
};
|
2017-07-25 10:55:50 +01:00
|
|
|
|
|
|
|
patches = [ ./gcc6.patch ];
|
|
|
|
|
2018-09-30 10:19:50 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Core library for full-featured text search engine";
|
|
|
|
longDescription = ''
|
|
|
|
CLucene is a high-performance, scalable, cross platform, full-featured,
|
|
|
|
open-source indexing and searching API. Specifically, CLucene is the guts
|
|
|
|
of a search engine, the hard stuff. You write the easy stuff: the UI and
|
|
|
|
the process of selecting and parsing your data files to pump them into
|
|
|
|
the search engine yourself, and any specialized queries to pull it back
|
|
|
|
for display or further processing.
|
|
|
|
|
|
|
|
CLucene is a port of the very popular Java Lucene text search engine API.
|
|
|
|
'';
|
2009-04-22 00:18:09 +01:00
|
|
|
homepage = http://clucene.sourceforge.net;
|
2018-09-30 10:19:50 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = with licenses; [ asl20 lgpl2 ];
|
2009-04-22 00:18:09 +01:00
|
|
|
};
|
2007-08-05 14:54:42 +01:00
|
|
|
}
|