mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
19 lines
606 B
Nix
19 lines
606 B
Nix
{ stdenv, callPackage, lib, fetchpatch, sasl, boost, Security, CoreFoundation, cctools }:
|
|
|
|
let
|
|
buildMongoDB = callPackage ./mongodb.nix {
|
|
inherit sasl boost Security CoreFoundation cctools stdenv;
|
|
};
|
|
in
|
|
buildMongoDB {
|
|
version = "6.0.7";
|
|
sha256 = "sha256-Mva0rVYaUZ2gtqAwBk8BHrrhqjb4/K7NQQ1LYGzY78U=";
|
|
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=";
|
|
})
|
|
];
|
|
}
|