2019-08-04 03:09:49 +00:00
|
|
|
{ stdenv, callPackage, lib, sasl, boost, Security, CoreFoundation, cctools }:
|
2019-05-31 12:14:14 +00:00
|
|
|
|
|
|
|
let
|
2019-08-04 03:09:49 +00:00
|
|
|
buildMongoDB = callPackage ./mongodb.nix { inherit sasl; inherit boost; inherit Security; inherit CoreFoundation; inherit cctools; };
|
2019-05-31 12:14:14 +00:00
|
|
|
in
|
|
|
|
buildMongoDB {
|
2019-08-04 03:09:49 +00:00
|
|
|
version = "4.0.11";
|
|
|
|
sha256 = "0kry8kzzpah0l7j8xa333y1ixwvarc28ip3f6lx5590yy11j8ry2";
|
2019-05-31 12:14:14 +00:00
|
|
|
patches = [
|
|
|
|
./forget-build-dependencies.patch
|
2019-08-04 03:09:49 +00:00
|
|
|
./mozjs-45_fix-3-byte-opcode.patch
|
2019-05-31 12:14:14 +00:00
|
|
|
];
|
|
|
|
}
|