a5adf1ddd8
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
16 lines
437 B
Nix
16 lines
437 B
Nix
{ 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 = "3.4.24";
|
|
sha256 = "0j6mvgv0jnsnvgkl8505bl88kbxkba66qijlpi1la0dd5pd1imfr";
|
|
patches = [ ./forget-build-dependencies-3-4.patch ];
|
|
license = lib.licenses.agpl3;
|
|
}
|