nixpkgs/pkgs/servers/search/groonga/default.nix
2016-08-29 17:17:16 +09:00

43 lines
1.2 KiB
Nix

{ stdenv, fetchurl, mecab, kytea, libedit, pkgconfig
, suggestSupport ? false, zeromq, libevent, libmsgpack
, lz4Support ? false, lz4
, zlibSupport ? false, zlib
}:
stdenv.mkDerivation rec {
name = "groonga-${version}";
version = "6.0.8";
src = fetchurl {
url = "http://packages.groonga.org/source/groonga/${name}.tar.gz";
sha256 = "05mp6zkavxj87nbx0jr48rpjjcf7fzdczxa93sxp4zq2dsnn5s5r";
};
buildInputs = with stdenv.lib; [ pkgconfig mecab kytea libedit ] ++
optional lz4Support lz4 ++
optional zlibSupport zlib ++
optional suggestSupport [ zeromq libevent libmsgpack ];
configureFlags = with stdenv.lib; ''
${optionalString zlibSupport "--with-zlib"}
${optionalString lz4Support "--with-lz4"}
'';
meta = with stdenv.lib; {
homepage = http://groonga.org/;
description = "An open-source fulltext search engine and column store";
longDescription = ''
Groonga is an open-source fulltext search engine and column store.
It lets you write high-performance applications that requires fulltext search.
'';
license = licenses.lgpl21;
maintainers = [ maintainers.ericsagnes ];
platforms = platforms.linux;
};
}