2020-04-24 23:36:52 +00:00
|
|
|
{ stdenv, callPackage, lib, sasl, boost, Security, CoreFoundation, cctools }:
|
|
|
|
|
|
|
|
let
|
|
|
|
buildMongoDB = callPackage ./mongodb.nix {
|
|
|
|
inherit sasl;
|
|
|
|
inherit boost;
|
|
|
|
inherit Security;
|
|
|
|
inherit CoreFoundation;
|
|
|
|
inherit cctools;
|
|
|
|
};
|
|
|
|
in buildMongoDB {
|
2021-12-19 01:06:50 +00:00
|
|
|
version = "3.6.23";
|
|
|
|
sha256 = "sha256-EJpIerW4zcGJvHfqJ65fG8yNsLRlUnRkvYfC+jkoFJ4=";
|
2020-04-24 23:36:52 +00:00
|
|
|
patches = [ ./forget-build-dependencies.patch ]
|
2021-01-15 22:18:51 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ ./asio-no-experimental-string-view.patch ];
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|