summary refs log tree commit diff
path: root/pkgs/servers/nosql/mongodb/6.0.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/nosql/mongodb/6.0.nix')
-rw-r--r--pkgs/servers/nosql/mongodb/6.0.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/servers/nosql/mongodb/6.0.nix b/pkgs/servers/nosql/mongodb/6.0.nix
index 81d36eb232fa0..9f50ce6f0c4b0 100644
--- a/pkgs/servers/nosql/mongodb/6.0.nix
+++ b/pkgs/servers/nosql/mongodb/6.0.nix
@@ -1,4 +1,4 @@
-{ stdenv, callPackage, lib, sasl, boost, Security, CoreFoundation, cctools }:
+{ stdenv, callPackage, lib, fetchpatch, sasl, boost, Security, CoreFoundation, cctools }:
 
 let
   buildMongoDB = callPackage ./mongodb.nix {
@@ -6,7 +6,13 @@ let
   };
 in
 buildMongoDB {
-  version = "6.0.1";
-  sha256 = "sha256-3LdyPHj2t7JskCJh6flCYl6qjfAbRXHsi+19L+0O2Zs=";
-  patches = [ ];
+  version = "6.0.5";
+  sha256 = "sha256-iUY5nbyaoMknBlWy3ItkgY87lHNVbZ1N9ricbzMpWX4=";
+  patches = [
+    (fetchpatch {
+      name = "mongodb-6.1.0-rc-more-specific-cache-alignment-types.patch";
+      url = "https://github.com/mongodb/mongo/commit/5435f9585f857f6145beaf6d31daf336453ba86f.patch";
+      sha256 = "sha256-gWlE2b/NyGe2243iNCXzjcERIY8/4ZWI4Gjh5SF0tYA=";
+    })
+  ];
 }