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.
wip/yesman
Orivej Desh 6 years ago
parent 0ad3721616
commit 65663f883c
  1. 4
      pkgs/applications/editors/neovim/default.nix
  2. 10
      pkgs/applications/editors/neovim/qt.nix
  3. 4
      pkgs/applications/networking/instant-messengers/ring-daemon/default.nix
  4. 4
      pkgs/applications/science/chemistry/pymol/default.nix
  5. 4
      pkgs/development/libraries/libtoxcore/default.nix
  6. 0
      pkgs/development/libraries/msgpack/default.nix
  7. 2
      pkgs/development/libraries/msgpack/generic.nix
  8. 4
      pkgs/development/libraries/opendht/default.nix
  9. 4
      pkgs/development/ruby-modules/gem-config/default.nix
  10. 4
      pkgs/servers/search/groonga/default.nix
  11. 4
      pkgs/servers/sql/postgresql/pgroonga/default.nix
  12. 4
      pkgs/tools/misc/tmate/default.nix
  13. 1
      pkgs/top-level/aliases.nix
  14. 4
      pkgs/top-level/all-packages.nix

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake, gettext, libmsgpack, libtermkey, libiconv
{ stdenv, fetchFromGitHub, cmake, gettext, msgpack, libtermkey, libiconv
, libuv, luaPackages, ncurses, pkgconfig
, unibilium, xsel, gperf
, libvterm-neovim
@ -25,7 +25,7 @@ let
buildInputs = [
libtermkey
libuv
libmsgpack
msgpack
ncurses
libvterm-neovim
unibilium

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, cmake, doxygen, makeWrapper
, libmsgpack, neovim, pythonPackages, qtbase }:
, msgpack, neovim, pythonPackages, qtbase }:
stdenv.mkDerivation rec {
name = "neovim-qt-${version}";
@ -13,12 +13,12 @@ stdenv.mkDerivation rec {
};
cmakeFlags = [
"-DMSGPACK_INCLUDE_DIRS=${libmsgpack}/include"
"-DMSGPACK_LIBRARIES=${libmsgpack}/lib/libmsgpackc.so"
"-DMSGPACK_INCLUDE_DIRS=${msgpack}/include"
"-DMSGPACK_LIBRARIES=${msgpack}/lib/msgpackc.so"
];
buildInputs = with pythonPackages; [
neovim qtbase libmsgpack
neovim qtbase msgpack
] ++ (with pythonPackages; [
jinja2 msgpack python
]);
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
preConfigure = ''
# avoid cmake trying to download libmsgpack
# avoid cmake trying to download msgpack
echo "" > third-party/CMakeLists.txt
# we rip out a number of tests that fail in the build env
# the GUI tests will never work but the others should - they did before neovim 0.2.0

@ -20,7 +20,7 @@
, speex
, boost
, opendht
, libmsgpack
, msgpack
, gnutls
, zlib
, jsoncpp
@ -108,7 +108,7 @@ stdenv.mkDerivation rec {
speex
boost
opendht
libmsgpack
msgpack
gnutls
zlib
jsoncpp

@ -1,6 +1,6 @@
{ stdenv, fetchurl, makeDesktopItem
, python3, python3Packages
, glew, freeglut, libpng, libxml2, tk, freetype, libmsgpack }:
, glew, freeglut, libpng, libxml2, tk, freetype, msgpack }:
with stdenv.lib;
@ -29,7 +29,7 @@ python3Packages.buildPythonApplication {
sha256 = "1qpacd5w4r9a0nm5iqmkd92ym3ai00dp7v61cwd6jgakk6wfps3s";
};
buildInputs = [ python3Packages.numpy glew freeglut libpng libxml2 tk freetype libmsgpack ];
buildInputs = [ python3Packages.numpy glew freeglut libpng libxml2 tk freetype msgpack ];
NIX_CFLAGS_COMPILE = "-I ${libxml2.dev}/include/libxml2";
installPhase = ''

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake, libsodium, ncurses, libopus, libmsgpack
{ stdenv, fetchFromGitHub, cmake, libsodium, ncurses, libopus, msgpack
, libvpx, check, libconfig, pkgconfig }:
let
@ -20,7 +20,7 @@ let
];
buildInputs = [
libsodium libmsgpack ncurses libconfig
libsodium msgpack ncurses libconfig
] ++ stdenv.lib.optionals (!stdenv.isAarch32) [
libopus libvpx
];

@ -5,7 +5,7 @@
}:
stdenv.mkDerivation rec {
name = "libmsgpack-${version}";
name = "msgpack-${version}";
inherit src patches;

@ -6,7 +6,7 @@
, pkgconfig
, nettle
, gnutls
, libmsgpack
, msgpack
, readline
, libargon2
}:
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
pkgconfig
nettle
gnutls
libmsgpack
msgpack
readline
libargon2
];

@ -21,7 +21,7 @@
, libiconv, postgresql, v8_3_16_14, clang, sqlite, zlib, imagemagick
, pkgconfig , ncurses, xapian_1_2_22, gpgme, utillinux, fetchpatch, tzdata, icu, libffi
, cmake, libssh2, openssl, mysql, darwin, git, perl, pcre, gecode_3, curl
, libmsgpack, qt48, libsodium, snappy, libossp_uuid, lxc, libpcap, xorg, gtk2, buildRubyGem
, msgpack, qt48, libsodium, snappy, libossp_uuid, lxc, libpcap, xorg, gtk2, buildRubyGem
, cairo, re2, rake, gobjectIntrospection, gdk_pixbuf, zeromq, graphicsmagick, libcxx
}@args:
@ -219,7 +219,7 @@ in
};
msgpack = attrs: {
buildInputs = [ libmsgpack ];
buildInputs = [ msgpack ];
};
mysql = attrs: {

@ -1,5 +1,5 @@
{ stdenv, fetchurl, mecab, kytea, libedit, pkgconfig
, suggestSupport ? false, zeromq, libevent, libmsgpack
, suggestSupport ? false, zeromq, libevent, msgpack
, lz4Support ? false, lz4
, zlibSupport ? false, zlib
}:
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
[ pkgconfig mecab kytea libedit ]
++ optional lz4Support lz4
++ optional zlibSupport zlib
++ optionals suggestSupport [ zeromq libevent libmsgpack ];
++ optionals suggestSupport [ zeromq libevent msgpack ];
configureFlags = with stdenv.lib;
optional zlibSupport "--with-zlib"

@ -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" ];

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, autoreconfHook, cmake, libtool, pkgconfig
, zlib, openssl, libevent, ncurses, ruby, libmsgpack, libssh }:
, zlib, openssl, libevent, ncurses, ruby, msgpack, libssh }:
stdenv.mkDerivation rec {
name = "tmate-${version}";
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
dontUseCmakeConfigure = true;
buildInputs = [ libtool zlib openssl libevent ncurses ruby libmsgpack libssh ];
buildInputs = [ libtool zlib openssl libevent ncurses ruby msgpack libssh ];
nativeBuildInputs = [ autoreconfHook cmake pkgconfig ];
enableParallelBuilding = true;

@ -173,6 +173,7 @@ mapAliases ({
module_init_tools = kmod; # added 2016-04-22
mpich2 = mpich; # added 2018-08-06
msf = metasploit; # added 2018-04-25
libmsgpack = msgpack; # added 2018-08-17
mssys = ms-sys; # added 2015-12-13
multipath_tools = multipath-tools; # added 2016-01-21
mupen64plus1_5 = mupen64plus; # added 2016-02-12

@ -10437,8 +10437,6 @@ with pkgs;
libmtp = callPackage ../development/libraries/libmtp { };
libmsgpack = callPackage ../development/libraries/libmsgpack { };
libmypaint = callPackage ../development/libraries/libmypaint { };
libmysofa = callPackage ../development/libraries/audio/libmysofa { };
@ -11118,6 +11116,8 @@ with pkgs;
mqtt-bench = callPackage ../applications/misc/mqtt-bench {};
msgpack = callPackage ../development/libraries/msgpack { };
msilbc = callPackage ../development/libraries/msilbc { };
mp4v2 = callPackage ../development/libraries/mp4v2 { };

Loading…
Cancel
Save