about summary refs log tree commit diff
path: root/pkgs/servers/nosql/mongodb/v4_0.nix
blob: 819d41cd17eebff0ce408b6dda4650f0056e98ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ 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.11";
    sha256 = "0kry8kzzpah0l7j8xa333y1ixwvarc28ip3f6lx5590yy11j8ry2";
    patches = [
      ./forget-build-dependencies.patch
      ./mozjs-45_fix-3-byte-opcode.patch
    ];
  }