summary refs log tree commit diff
path: root/pkgs/servers/nosql/mongodb/v3_4.nix
blob: e1c71bc13f7a9ad020d9e188c0b24b9f59fa2d5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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.24";
  sha256 = "0j6mvgv0jnsnvgkl8505bl88kbxkba66qijlpi1la0dd5pd1imfr";
  patches = [ ./forget-build-dependencies-3-4.patch ];
  license = stdenv.lib.licenses.agpl3;
}