2019-08-04 05:09:49 +02:00
|
|
|
{ stdenv, callPackage, lib, sasl, boost, Security, CoreFoundation, cctools }:
|
2019-05-31 14:14:14 +02:00
|
|
|
|
|
|
|
let
|
2019-08-04 08:25:56 +02:00
|
|
|
buildMongoDB = callPackage ./mongodb.nix {
|
|
|
|
inherit sasl;
|
|
|
|
inherit boost;
|
|
|
|
inherit Security;
|
|
|
|
inherit CoreFoundation;
|
|
|
|
inherit cctools;
|
|
|
|
};
|
|
|
|
in buildMongoDB {
|
2021-11-17 00:01:10 +01:00
|
|
|
version = "3.6.23";
|
|
|
|
sha256 = "sha256-EJpIerW4zcGJvHfqJ65fG8yNsLRlUnRkvYfC+jkoFJ4=";
|
2019-08-21 11:33:51 +02:00
|
|
|
patches = [ ./forget-build-dependencies.patch ]
|
2021-01-15 08:07:56 +01:00
|
|
|
++ lib.optionals stdenv.isDarwin [ ./asio-no-experimental-string-view.patch ];
|
2019-08-04 08:25:56 +02:00
|
|
|
}
|