2022-12-23T02:03:16 msgpack 3.3.0 -> 4.0.0 https://repology.org/metapackage/msgpack/versions 2022-12-23T02:03:18 attrpath: msgpack 2022-12-23T02:03:19 Checking auto update branch... 2022-12-23T02:03:19 No auto update branch exists 2022-12-23T02:03:19 Old version 3.3.0" not present in master derivation file with contents: { lib, stdenv, cmake , version, src, patches ? [ ] , ... }: stdenv.mkDerivation { pname = "msgpack"; inherit version; inherit src patches; nativeBuildInputs = [ cmake ]; cmakeFlags = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "-DMSGPACK_BUILD_EXAMPLES=OFF"; meta = with lib; { description = "MessagePack implementation for C and C++"; homepage = "https://msgpack.org"; license = licenses.asl20; maintainers = with maintainers; [ redbaron ]; platforms = platforms.all; }; }