about summary refs log tree commit diff
path: root/pkgs/servers/foundationdb
diff options
context:
space:
mode:
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;