msgpack-cxx: init at 6.0.0
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, boost
|
||||
, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "msgpack-cxx";
|
||||
version = "6.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "msgpack";
|
||||
repo = "msgpack-c";
|
||||
rev = "refs/tags/cpp-${version}";
|
||||
hash = "sha256-p0eLd0fHhsgnRomubYadumMNiC2itdePJC9B55m49LI=";
|
||||
};
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
boost
|
||||
];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DMSGPACK_BUILD_DOCS=OFF" # docs are not installed even if built
|
||||
] ++ lib.optional doCheck "-DMSGPACK_BUILD_TESTS=ON";
|
||||
|
||||
checkInputs = [
|
||||
zlib
|
||||
];
|
||||
|
||||
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
||||
|
||||
meta = with lib; {
|
||||
description = "MessagePack implementation for C++";
|
||||
homepage = "https://github.com/msgpack/msgpack-c";
|
||||
changelog = "https://github.com/msgpack/msgpack-c/blob/${src.rev}/CHANGELOG.md";
|
||||
license = licenses.boost;
|
||||
maintainers = with maintainers; [ nickcao ];
|
||||
};
|
||||
}
|
||||
@@ -23307,6 +23307,8 @@ with pkgs;
|
||||
|
||||
msgpack-c = callPackage ../development/libraries/msgpack-c { };
|
||||
|
||||
msgpack-cxx = callPackage ../development/libraries/msgpack-cxx { };
|
||||
|
||||
msoffcrypto-tool = with python3.pkgs; toPythonApplication msoffcrypto-tool;
|
||||
|
||||
msilbc = callPackage ../development/libraries/msilbc { };
|
||||
|
||||
Reference in New Issue
Block a user