2016-08-25 09:31:35 +01:00
|
|
|
{ stdenv, fetchurl, mecab, kytea, libedit, pkgconfig
|
2018-08-18 00:53:33 +01:00
|
|
|
, suggestSupport ? false, zeromq, libevent, msgpack
|
2017-01-24 04:36:42 +00:00
|
|
|
, lz4Support ? false, lz4
|
2016-08-25 09:31:35 +01:00
|
|
|
, zlibSupport ? false, zlib
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "groonga";
|
2020-07-03 18:25:06 +01:00
|
|
|
version = "10.0.4";
|
2016-08-25 09:31:35 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://packages.groonga.org/source/groonga/${pname}-${version}.tar.gz";
|
2020-07-03 18:25:06 +01:00
|
|
|
sha256 = "1gf9vqjhq89f5xqn90pwdbz7amv38j78s3pzlxd1c2q3g24wklrj";
|
2016-08-25 09:31:35 +01:00
|
|
|
};
|
|
|
|
|
2017-01-24 04:36:42 +00:00
|
|
|
buildInputs = with stdenv.lib;
|
|
|
|
[ pkgconfig mecab kytea libedit ]
|
|
|
|
++ optional lz4Support lz4
|
|
|
|
++ optional zlibSupport zlib
|
2018-08-18 00:53:33 +01:00
|
|
|
++ optionals suggestSupport [ zeromq libevent msgpack ];
|
2016-08-25 09:31:35 +01:00
|
|
|
|
2017-01-24 04:36:42 +00:00
|
|
|
configureFlags = with stdenv.lib;
|
|
|
|
optional zlibSupport "--with-zlib"
|
|
|
|
++ optional lz4Support "--with-lz4";
|
2016-09-29 10:30:40 +01:00
|
|
|
|
2017-01-24 04:36:42 +00:00
|
|
|
doInstallCheck = true;
|
2016-09-29 10:30:40 +01:00
|
|
|
installCheckPhase = "$out/bin/groonga --version";
|
|
|
|
|
2016-08-25 09:31:35 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://groonga.org/";
|
2016-08-25 09:31:35 +01:00
|
|
|
description = "An open-source fulltext search engine and column store";
|
2017-01-24 04:36:42 +00:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = [ maintainers.ericsagnes ];
|
2019-07-20 03:19:13 +01:00
|
|
|
platforms = platforms.unix;
|
2016-08-25 09:31:35 +01:00
|
|
|
longDescription = ''
|
|
|
|
Groonga is an open-source fulltext search engine and column store.
|
|
|
|
It lets you write high-performance applications that requires fulltext search.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|