2019-08-03 20:09:49 -07:00
|
|
|
{ stdenv, callPackage, lib, sasl, boost, Security, CoreFoundation, cctools }:
|
2019-05-31 05:14:14 -07:00
|
|
|
|
|
|
|
let
|
2019-08-03 20:09:49 -07:00
|
|
|
buildMongoDB = callPackage ./mongodb.nix { inherit sasl; inherit boost; inherit Security; inherit CoreFoundation; inherit cctools; };
|
2019-05-31 05:14:14 -07:00
|
|
|
in
|
|
|
|
buildMongoDB {
|
2019-08-03 20:09:49 -07:00
|
|
|
version = "3.4.22";
|
|
|
|
sha256 = "1rizrr69b26y7fb973n52hk387sf3mxzqg8wka4f3zdjdidfyiny";
|
2019-05-31 05:14:14 -07:00
|
|
|
patches = [
|
|
|
|
./forget-build-dependencies-3-4.patch
|
|
|
|
];
|
|
|
|
}
|