forked from mirrors/nixpkgs
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, mecab, kytea, libedit, pkg-config
|
|
, suggestSupport ? false, zeromq, libevent, msgpack
|
|
, lz4Support ? false, lz4
|
|
, zlibSupport ? false, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "groonga";
|
|
version = "10.0.9";
|
|
|
|
src = fetchurl {
|
|
url = "https://packages.groonga.org/source/groonga/${pname}-${version}.tar.gz";
|
|
sha256 = "191saqanv8k6ijl96mw4jdhh9pkpdn651f1bg4kfb34p7vy8ld9k";
|
|
};
|
|
|
|
buildInputs = with lib;
|
|
[ pkg-config mecab kytea libedit ]
|
|
++ optional lz4Support lz4
|
|
++ optional zlibSupport zlib
|
|
++ optionals suggestSupport [ zeromq libevent msgpack ];
|
|
|
|
configureFlags = with lib;
|
|
optional zlibSupport "--with-zlib"
|
|
++ optional lz4Support "--with-lz4";
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = "$out/bin/groonga --version";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://groonga.org/";
|
|
description = "An open-source fulltext search engine and column store";
|
|
license = licenses.lgpl21;
|
|
maintainers = [ maintainers.ericsagnes ];
|
|
platforms = platforms.unix;
|
|
longDescription = ''
|
|
Groonga is an open-source fulltext search engine and column store.
|
|
It lets you write high-performance applications that requires fulltext search.
|
|
'';
|
|
};
|
|
|
|
}
|