about summary refs log tree commit diff
path: root/pkgs/servers/nosql/mongodb/v3_4.nix
blob: fb124a6b2e5b28ce60963e485cbb6651cb9ed36e (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.4.22";
    sha256 = "1rizrr69b26y7fb973n52hk387sf3mxzqg8wka4f3zdjdidfyiny";
    patches = [
      ./forget-build-dependencies-3-4.patch
    ];
  }