2019-08-04 04:09:49 +01:00
|
|
|
{ stdenv, callPackage, lib, sasl, boost, Security, CoreFoundation, cctools }:
|
2019-05-31 13:14:14 +01:00
|
|
|
|
|
|
|
let
|
2019-08-04 07:25:56 +01:00
|
|
|
buildMongoDB = callPackage ./mongodb.nix {
|
|
|
|
inherit sasl;
|
|
|
|
inherit boost;
|
|
|
|
inherit Security;
|
|
|
|
inherit CoreFoundation;
|
|
|
|
inherit cctools;
|
|
|
|
};
|
|
|
|
in buildMongoDB {
|
2019-08-21 10:33:51 +01:00
|
|
|
version = "4.0.12";
|
|
|
|
sha256 = "1j8dqa4jr623y87jrdanyib9r7x18srrvdx952q4azcc8zrdwci1";
|
2019-08-04 07:25:56 +01:00
|
|
|
patches =
|
2019-08-21 10:33:51 +01:00
|
|
|
[ ./forget-build-dependencies.patch ./mozjs-45_fix-3-byte-opcode.patch ]
|
2021-01-15 07:07:56 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ ./asio-no-experimental-string-view.patch ];
|
2019-08-04 07:25:56 +01:00
|
|
|
}
|