about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-03-25 11:27:01 +0200
committerGitHub <noreply@github.com>2023-03-25 11:27:01 +0200
commit4538d214dd2354907a29076dcd020ece7cf4584c (patch)
tree734c0467578fb6e35c362135b34322728c08f7d7 /pkgs
parente7786feb61bf54ceb27c39276a6ca0fce3663bac (diff)
parent74ef0ee319dfd77e0d775e71c07a8082869d31ee (diff)
Merge pull request #222361 from vifino/vifino/mongodb-6.0.5
mongodb-6_0: 6.0.1 -> 6.0.5
Diffstat (limited to 'pkgs')
-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=";
+    })
+  ];
 }