about summary refs log tree commit diff
path: root/pkgs/development/libraries/libtoxcore
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2018-08-17 23:53:33 +0000
committerOrivej Desh <orivej@gmx.fr>2018-08-18 23:19:54 +0000
commit65663f883c4debc2067a11f202725759cedb4fd5 (patch)
tree55d207e980e0531786a9c90a8f6b70c0775b1743 /pkgs/development/libraries/libtoxcore
parent0ad3721616039fa009e487908d16bf7984302cbb (diff)
downloadnixlib-65663f883c4debc2067a11f202725759cedb4fd5.tar
nixlib-65663f883c4debc2067a11f202725759cedb4fd5.tar.gz
nixlib-65663f883c4debc2067a11f202725759cedb4fd5.tar.bz2
nixlib-65663f883c4debc2067a11f202725759cedb4fd5.tar.lz
nixlib-65663f883c4debc2067a11f202725759cedb4fd5.tar.xz
nixlib-65663f883c4debc2067a11f202725759cedb4fd5.tar.zst
nixlib-65663f883c4debc2067a11f202725759cedb4fd5.zip
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.
Diffstat (limited to 'pkgs/development/libraries/libtoxcore')
-rw-r--r--pkgs/development/libraries/libtoxcore/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libtoxcore/default.nix b/pkgs/development/libraries/libtoxcore/default.nix
index a005c8b37465..e588944490b3 100644
--- a/pkgs/development/libraries/libtoxcore/default.nix
+++ b/pkgs/development/libraries/libtoxcore/default.nix
@@ -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
     ];