2021-01-25 00:26:54 -08:00
|
|
|
{ callPackage, lib, sasl, boost, Security, CoreFoundation, cctools }:
|
2019-05-31 05:14:14 -07:00
|
|
|
|
|
|
|
let
|
2019-08-03 23:25:56 -07:00
|
|
|
buildMongoDB = callPackage ./mongodb.nix {
|
|
|
|
inherit sasl;
|
|
|
|
inherit boost;
|
|
|
|
inherit Security;
|
|
|
|
inherit CoreFoundation;
|
|
|
|
inherit cctools;
|
|
|
|
};
|
|
|
|
in buildMongoDB {
|
2020-02-25 06:11:53 -08:00
|
|
|
version = "3.4.24";
|
|
|
|
sha256 = "0j6mvgv0jnsnvgkl8505bl88kbxkba66qijlpi1la0dd5pd1imfr";
|
2019-08-03 23:25:56 -07:00
|
|
|
patches = [ ./forget-build-dependencies-3-4.patch ];
|
2021-01-14 23:07:56 -08:00
|
|
|
license = lib.licenses.agpl3;
|
2019-08-03 23:25:56 -07:00
|
|
|
}
|