foundationdb: use msgpack-cxx instead of msgpack

This commit is contained in:
Nick Cao 2024-02-11 21:22:44 -05:00
parent 5a7b453b37
commit 0799b6de74
No known key found for this signature in database
2 changed files with 10 additions and 4 deletions

View File

@ -2,7 +2,7 @@
{ lib, fetchFromGitHub
, cmake, ninja, python3, openjdk8, mono, pkg-config
, msgpack, toml11
, msgpack-cxx, toml11
, gccStdenv, llvmPackages
, useClang ? false
@ -37,7 +37,7 @@ let
inherit rev hash;
};
buildInputs = [ ssl boost msgpack toml11 ];
buildInputs = [ ssl boost msgpack-cxx toml11 ];
nativeBuildInputs = [ pkg-config cmake ninja python3 openjdk8 mono ]
++ lib.optionals useClang [ llvmPackages.lld ];

View File

@ -1,8 +1,8 @@
{ gccStdenv, llvmPackages
, lib, fetchFromGitHub
, lib, fetchFromGitHub, fetchpatch
, cmake, ninja, python3, openjdk8, mono, openssl, boost178
, pkg-config, msgpack, toml11
, pkg-config, msgpack-cxx, toml11
}@args:
let
@ -19,6 +19,12 @@ in {
./patches/don-t-run-tests-requiring-doctest.patch
./patches/don-t-use-static-boost-libs.patch
./patches/fix-open-with-O_CREAT.patch
# GetMsgpack: add 4+ versions of upstream
# https://github.com/apple/foundationdb/pull/10935
(fetchpatch {
url = "https://github.com/apple/foundationdb/commit/c35a23d3f6b65698c3b888d76de2d93a725bff9c.patch";
hash = "sha256-bneRoZvCzJp0Hp/G0SzAyUyuDrWErSpzv+ickZQJR5w=";
})
];
};
}