2023-06-06 15:34:31 +02:00
|
|
|
{ gccStdenv, llvmPackages
|
|
|
|
, lib, fetchFromGitHub
|
2018-07-02 13:02:23 +02:00
|
|
|
|
2023-06-06 15:34:31 +02:00
|
|
|
, cmake, ninja, python3, openjdk8, mono, openssl, boost178
|
2023-02-08 13:57:07 +01:00
|
|
|
, pkg-config, msgpack, toml11
|
2019-05-03 02:46:55 +02:00
|
|
|
}@args:
|
2018-04-20 13:35:35 +02:00
|
|
|
|
|
|
|
let
|
2023-02-08 13:57:07 +01:00
|
|
|
cmakeBuild = import ./cmake.nix args;
|
2023-06-06 15:34:31 +02:00
|
|
|
in {
|
2023-02-08 13:57:07 +01:00
|
|
|
foundationdb71 = cmakeBuild {
|
2023-06-08 13:58:47 +02:00
|
|
|
version = "7.1.32";
|
|
|
|
hash = "sha256-CNJ4w1ECadj2KtcfbBPBQpXQeq9BAiw54hUgRTWPFzY=";
|
2023-02-08 13:57:07 +01:00
|
|
|
boost = boost178;
|
|
|
|
ssl = openssl;
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
./patches/disable-flowbench.patch
|
|
|
|
./patches/don-t-run-tests-requiring-doctest.patch
|
|
|
|
./patches/don-t-use-static-boost-libs.patch
|
|
|
|
./patches/fix-open-with-O_CREAT.patch
|
|
|
|
];
|
|
|
|
};
|
2018-04-20 13:35:35 +02:00
|
|
|
}
|