2020-07-07 19:53:31 +01: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 {
|
|
|
|
version = "4.2.8";
|
|
|
|
sha256 = "13yvhi1258skdni00bh6ph609whqsmhiimhyqy1gs2liwdvh5278";
|
|
|
|
patches =
|
|
|
|
[ ./forget-build-dependencies-4-2.patch ]
|
2021-01-15 07:07:56 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ ./asio-no-experimental-string-view-4-2.patch ];
|
2020-07-07 19:53:31 +01:00
|
|
|
}
|