2021-02-05 17:12:51 +00:00
|
|
|
{ callPackage, lib, sasl, boost, Security, CoreFoundation, cctools }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
buildMongoDB = callPackage ./mongodb.nix {
|
|
|
|
inherit sasl;
|
|
|
|
inherit boost;
|
|
|
|
inherit Security;
|
|
|
|
inherit CoreFoundation;
|
|
|
|
inherit cctools;
|
|
|
|
};
|
|
|
|
in buildMongoDB {
|
|
|
|
version = "3.4.24";
|
|
|
|
sha256 = "0j6mvgv0jnsnvgkl8505bl88kbxkba66qijlpi1la0dd5pd1imfr";
|
|
|
|
patches = [ ./forget-build-dependencies-3-4.patch ];
|
2021-01-15 22:18:51 +00:00
|
|
|
license = lib.licenses.agpl3;
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|