2021-01-21 18:00:13 +01:00
|
|
|
{lib, stdenv, fetchurl}:
|
2007-08-05 15:54:42 +02:00
|
|
|
|
2009-04-22 01:18:09 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2021-11-09 23:12:55 +01:00
|
|
|
pname = "clucene-core";
|
|
|
|
version = "0.9.21b";
|
2007-08-05 15:54:42 +02:00
|
|
|
|
2009-04-22 01:18:09 +02:00
|
|
|
src = fetchurl {
|
2021-11-09 23:12:55 +01:00
|
|
|
url = "mirror://sourceforge/clucene/clucene-core-${version}.tar.bz2";
|
2009-09-08 15:38:47 +02:00
|
|
|
sha256 = "202ee45af747f18642ae0a088d7c4553521714a511a1a9ec99b8144cf9928317";
|
2009-04-22 01:18:09 +02:00
|
|
|
};
|
2017-07-25 11:55:50 +02:00
|
|
|
|
|
|
|
patches = [ ./gcc6.patch ];
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2013-10-06 11:49:53 +02: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.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://clucene.sourceforge.net";
|
2021-03-11 18:36:45 +01:00
|
|
|
platforms = platforms.unix;
|
2018-09-30 11:19:50 +02:00
|
|
|
license = with licenses; [ asl20 lgpl2 ];
|
2009-04-22 01:18:09 +02:00
|
|
|
};
|
2007-08-05 15:54:42 +02:00
|
|
|
}
|