summary refs log tree commit diff
path: root/pkgs/servers/nosql/mongodb/v4_0.nix
blob: 51ce1e25062dede3f25a4f7c6a3b02d2d62bf603 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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 = "4.0.12";
  sha256 = "1j8dqa4jr623y87jrdanyib9r7x18srrvdx952q4azcc8zrdwci1";
  patches =
    [ ./forget-build-dependencies.patch ./mozjs-45_fix-3-byte-opcode.patch ]
    ++ stdenv.lib.optionals stdenv.isDarwin [ ./asio-no-experimental-string-view.patch ];
}