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

43 lines
1.3 KiB
Nix
Raw Normal View History

2016-08-25 08:31:35 +00:00
{ stdenv, fetchurl, mecab, kytea, libedit, pkgconfig
, suggestSupport ? false, zeromq, libevent, libmsgpack
2017-01-24 04:36:42 +00:00
, lz4Support ? false, lz4
2016-08-25 08:31:35 +00:00
, zlibSupport ? false, zlib
}:
stdenv.mkDerivation rec {
name = "groonga-${version}";
2018-02-23 06:50:01 +00:00
version = "8.0.0";
2016-08-25 08:31:35 +00:00
src = fetchurl {
2016-08-29 08:17:16 +00:00
url = "http://packages.groonga.org/source/groonga/${name}.tar.gz";
2018-02-23 06:50:01 +00:00
sha256 = "14il1biqpx5qs5dkmsrikw33pc8gj8scmr90y639wap87z5i3dcz";
2016-08-25 08:31:35 +00:00
};
2017-01-24 04:36:42 +00:00
buildInputs = with stdenv.lib;
[ pkgconfig mecab kytea libedit ]
++ optional lz4Support lz4
++ optional zlibSupport zlib
++ optionals suggestSupport [ zeromq libevent libmsgpack ];
2016-08-25 08:31:35 +00:00
2017-01-24 04:36:42 +00:00
configureFlags = with stdenv.lib;
optional zlibSupport "--with-zlib"
++ optional lz4Support "--with-lz4";
2016-09-29 09:30:40 +00:00
2017-01-24 04:36:42 +00:00
doInstallCheck = true;
2016-09-29 09:30:40 +00:00
installCheckPhase = "$out/bin/groonga --version";
2016-08-25 08:31:35 +00:00
meta = with stdenv.lib; {
2017-01-24 04:36:42 +00:00
homepage = http://groonga.org/;
2016-08-25 08:31:35 +00: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 ];
platforms = platforms.linux;
2016-08-25 08:31:35 +00:00
longDescription = ''
Groonga is an open-source fulltext search engine and column store.
It lets you write high-performance applications that requires fulltext search.
'';
};
}