summary refs log tree commit diff
path: root/pkgs/servers/nosql/mongodb/4.4.nix
blob: 01cefa95d0398d6e9c4c5aa4e9b0a22b83121bbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ stdenv, callPackage, lib, sasl, boost, Security, CoreFoundation, cctools }:

let
  buildMongoDB = callPackage ./mongodb.nix {
    inherit sasl boost Security CoreFoundation cctools;
  };
in
buildMongoDB {
  version = "4.4.10";
  sha256 = "1rn9w3wwb2kbixqx39zb7cczzw5qjbh7d9yhlbivrs0f9bywl8nx";
  patches = [
    ./forget-build-dependencies-4-4.patch
  ] ++ lib.optionals stdenv.isDarwin [ ./asio-no-experimental-string-view-4-4.patch ];
}