about summary refs log tree commit diff
path: root/pkgs/servers/nosql/mongodb/v3_6.nix
blob: 9000a2b5ed5f522ffe7ec72812d4e1a824732ad2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ stdenv, callPackage, lib, sasl, boost, Security }:

let
  buildMongoDB = callPackage ./mongodb.nix { inherit sasl; inherit boost; inherit Security; };
in
  buildMongoDB {
    version = "3.6.12";
    sha256 = "1fi1ccid4rnfjg6yn3183qrhjqc8hz7jfgdpwp1dy6piw6z85n3l";
    patches = [
      ./forget-build-dependencies.patch
    ];
  }