3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/nosql/mongodb/v4_0.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
521 B
Nix
Raw Normal View History

{ 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 {
2021-11-16 23:01:42 +00:00
version = "4.0.27";
sha256 = "sha256-ct33mnK4pszhYM4Is7j0GZQRyi8i8Qmy0wcklyq5LjM=";
patches =
2019-08-21 10:33:51 +01:00
[ ./forget-build-dependencies.patch ./mozjs-45_fix-3-byte-opcode.patch ]
2021-01-15 07:07:56 +00:00
++ lib.optionals stdenv.isDarwin [ ./asio-no-experimental-string-view.patch ];
}