Revert "pgroonga: build groonga with msgpack-c"

This reverts commit 234b613656.
Based on the discussion and upstream documentation, it seems more
reasonable to add msgpack as a default dependency for groonga.
This commit is contained in:
eth3lbert 2023-12-06 09:26:29 +08:00
parent 234b613656
commit 000522dbf4
No known key found for this signature in database

View file

@ -10,17 +10,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkg-config ];
buildInputs =
let
groonga-with-msgpack = groonga.overrideAttrs (oa: {
buildInputs = oa.buildInputs ++ [ msgpack-c ];
});
in
[
postgresql
msgpack-c
groonga-with-msgpack
];
buildInputs = [ postgresql msgpack-c groonga ];
makeFlags = [
"HAVE_MSGPACK=1"