Skip to content

Commit

Permalink
Merge pull request NixOS#288179 from NickCao/foundationdb-msgpack
Browse files Browse the repository at this point in the history
foundationdb: use msgpack-cxx instead of msgpack
  • Loading branch information
NickCao authored Feb 15, 2024
2 parents f979844 + 0799b6d commit 110b0eb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkgs/servers/foundationdb/cmake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{ lib, fetchFromGitHub
, cmake, ninja, python3, openjdk8, mono, pkg-config
, msgpack, toml11
, msgpack-cxx, toml11

, gccStdenv, llvmPackages
, useClang ? false
Expand Down Expand Up @@ -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 ];
Expand Down
10 changes: 8 additions & 2 deletions pkgs/servers/foundationdb/default.nix
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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=";
})
];
};
}

0 comments on commit 110b0eb

Please sign in to comment.