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