foundationdb: 7.1.30 -> 7.1.32

This commit is contained in:
Weijia Wang 2023-06-08 14:58:47 +03:00
parent 7cd807e588
commit b0613d65f1
2 changed files with 4 additions and 4 deletions

View file

@ -21,7 +21,7 @@ let
makeFdb =
{ version
, sha256
, hash
, rev ? "refs/tags/${version}"
, officialRelease ? true
, patches ? []
@ -34,7 +34,7 @@ let
src = fetchFromGitHub {
owner = "apple";
repo = "foundationdb";
inherit rev sha256;
inherit rev hash;
};
buildInputs = [ ssl boost msgpack toml11 ];

View file

@ -9,8 +9,8 @@ let
cmakeBuild = import ./cmake.nix args;
in {
foundationdb71 = cmakeBuild {
version = "7.1.30";
sha256 = "sha256-dAnAE1m2NZLHgP4QJvURBPcxArXvWWdhqEYwh3tU+tU";
version = "7.1.32";
hash = "sha256-CNJ4w1ECadj2KtcfbBPBQpXQeq9BAiw54hUgRTWPFzY=";
boost = boost178;
ssl = openssl;