about summary refs log tree commit diff
path: root/pkgs/servers/nosql/mongodb/v3_6.nix
blob: 412d72b4e668745c1938a98e4472e7221fd2fa53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ 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.6.13";
    sha256 = "1mbvk4bmabrswjdm01jssxcygjpq5799zqyx901nsi12vlcymwg4";
    patches = [
      ./forget-build-dependencies.patch
    ];
  }