nixpkgs/pkgs/servers/nosql/mongodb/6.0.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
606 B
Nix
Raw Normal View History

2023-03-21 11:12:35 +00:00
{ stdenv, callPackage, lib, fetchpatch, sasl, boost, Security, CoreFoundation, cctools }:
let
buildMongoDB = callPackage ./mongodb.nix {
2022-09-14 23:30:54 +00:00
inherit sasl boost Security CoreFoundation cctools stdenv;
};
in
buildMongoDB {
2023-08-07 18:05:17 +00:00
version = "6.0.8";
sha256 = "sha256-ZyTE/dZ86kJ+WRSDmc2it4SzAlwjNKhWUyYXpisNIS4=";
2023-03-21 11:12:35 +00:00
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=";
})
];
}