mongodb-6_0: 6.0.1 -> 6.0.5
This commit is contained in:
parent
39de70afeb
commit
74ef0ee319
1 changed files with 10 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, callPackage, lib, sasl, boost, Security, CoreFoundation, cctools }:
|
{ stdenv, callPackage, lib, fetchpatch, sasl, boost, Security, CoreFoundation, cctools }:
|
||||||
|
|
||||||
let
|
let
|
||||||
buildMongoDB = callPackage ./mongodb.nix {
|
buildMongoDB = callPackage ./mongodb.nix {
|
||||||
|
@ -6,7 +6,13 @@ let
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
buildMongoDB {
|
buildMongoDB {
|
||||||
version = "6.0.1";
|
version = "6.0.5";
|
||||||
sha256 = "sha256-3LdyPHj2t7JskCJh6flCYl6qjfAbRXHsi+19L+0O2Zs=";
|
sha256 = "sha256-iUY5nbyaoMknBlWy3ItkgY87lHNVbZ1N9ricbzMpWX4=";
|
||||||
patches = [ ];
|
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=";
|
||||||
|
})
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue