nixpkgs/pkgs/servers/search/groonga/default.nix

43 lines
1.3 KiB
Nix
Raw Normal View History

2016-08-25 01:31:35 -07:00
{ stdenv, fetchurl, mecab, kytea, libedit, pkgconfig
, suggestSupport ? false, zeromq, libevent, libmsgpack
2017-01-23 20:36:42 -08:00
, lz4Support ? false, lz4
2016-08-25 01:31:35 -07:00
, zlibSupport ? false, zlib
}:
stdenv.mkDerivation rec {
name = "groonga-${version}";
version = "8.0.2";
2016-08-25 01:31:35 -07:00
src = fetchurl {
2016-08-29 01:17:16 -07:00
url = "http://packages.groonga.org/source/groonga/${name}.tar.gz";
sha256 = "0bsf4dbgbddij49xg6d6kl9kb1m5ywdyc1w1xz2giisqk1hdwsz4";
2016-08-25 01:31:35 -07:00
};
2017-01-23 20:36:42 -08:00
buildInputs = with stdenv.lib;
[ pkgconfig mecab kytea libedit ]
++ optional lz4Support lz4
++ optional zlibSupport zlib
++ optionals suggestSupport [ zeromq libevent libmsgpack ];
2016-08-25 01:31:35 -07:00
2017-01-23 20:36:42 -08:00
configureFlags = with stdenv.lib;
optional zlibSupport "--with-zlib"
++ optional lz4Support "--with-lz4";
2016-09-29 02:30:40 -07:00
2017-01-23 20:36:42 -08:00
doInstallCheck = true;
2016-09-29 02:30:40 -07:00
installCheckPhase = "$out/bin/groonga --version";
2016-08-25 01:31:35 -07:00
meta = with stdenv.lib; {
2017-01-23 20:36:42 -08:00
homepage = http://groonga.org/;
2016-08-25 01:31:35 -07:00
description = "An open-source fulltext search engine and column store";
2017-01-23 20:36:42 -08:00
license = licenses.lgpl21;
maintainers = [ maintainers.ericsagnes ];
platforms = platforms.linux;
2016-08-25 01:31:35 -07:00
longDescription = ''
Groonga is an open-source fulltext search engine and column store.
It lets you write high-performance applications that requires fulltext search.
'';
};
}