about summary refs log tree commit diff
path: root/pkgs/servers/nosql/mongodb/6.0.nix
blob: 81d36eb232fa0d4af18583830df668ee2f9912c9 (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 boost Security CoreFoundation cctools stdenv;
  };
in
buildMongoDB {
  version = "6.0.1";
  sha256 = "sha256-3LdyPHj2t7JskCJh6flCYl6qjfAbRXHsi+19L+0O2Zs=";
  patches = [ ];
}