msgpack: rename from libmsgpack

The project does not use the name "libmsgpack". It variously uses "msgpack" and
"msgpack-c", and "msgpackc" for the name of the library.
This commit is contained in:
Orivej Desh
2018-08-17 23:53:33 +00:00
parent 0ad3721616
commit 65663f883c
14 changed files with 27 additions and 26 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, postgresql, libmsgpack, groonga }:
{ stdenv, fetchurl, pkgconfig, postgresql, msgpack, groonga }:
stdenv.mkDerivation rec {
name = "pgroonga-${version}";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ postgresql libmsgpack groonga ];
buildInputs = [ postgresql msgpack groonga ];
makeFlags = [ "HAVE_MSGPACK=1" ];