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

43 lines
1.3 KiB
Nix
Raw Normal View History

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