about summary refs log tree commit diff
path: root/pkgs/servers/foundationdb
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-04-26 16:35:10 +0300
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-04-26 16:35:10 +0300
commite068055c01bcd5ec630b9f75c7aa999e3b7267d8 (patch)
tree91d91bfbfd76d11052070b7fd9ae2df810287997 /pkgs/servers/foundationdb
parent1d5ff2163e7a9611d4f808ae2c404f45e1566c36 (diff)
foundationdb71: 7.1.26 -> 7.1.30
Diffstat (limited to 'pkgs/servers/foundationdb')
-rw-r--r--pkgs/servers/foundationdb/cmake.nix2
-rw-r--r--pkgs/servers/foundationdb/default.nix4
2 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/servers/foundationdb/cmake.nix b/pkgs/servers/foundationdb/cmake.nix
index d46502601c2a6..6f22fb02a3d0c 100644
--- a/pkgs/servers/foundationdb/cmake.nix
+++ b/pkgs/servers/foundationdb/cmake.nix
@@ -85,6 +85,8 @@ let
             "-DOPENSSL_SSL_LIBRARY=${ssl.out}/lib/libssl.so"
           ];
 
+        hardeningDisable = [ "fortify" ];
+
         env.NIX_CFLAGS_COMPILE = toString [
           # Needed with GCC 12
           "-Wno-error=missing-template-keyword"
diff --git a/pkgs/servers/foundationdb/default.nix b/pkgs/servers/foundationdb/default.nix
index 9a6faac0562b4..5dc25e0110112 100644
--- a/pkgs/servers/foundationdb/default.nix
+++ b/pkgs/servers/foundationdb/default.nix
@@ -89,8 +89,8 @@ in with builtins; {
   };
 
   foundationdb71 = cmakeBuild {
-    version = "7.1.26";
-    sha256  = "sha256-IVUFC2Z/nJAeKr/TtEiHAo+1HUeZuSZ2birwJtiYZx0=";
+    version = "7.1.30";
+    sha256  = "sha256-dAnAE1m2NZLHgP4QJvURBPcxArXvWWdhqEYwh3tU+tU";
     boost   = boost178;
     ssl     = openssl;