nixpkgs-suyu/pkgs/servers/nosql/mongodb/6.0.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
320 B
Nix
Raw Normal View History

{ stdenv, callPackage, lib, sasl, boost, Security, CoreFoundation, cctools }:
let
buildMongoDB = callPackage ./mongodb.nix {
2022-09-15 01:30:54 +02:00
inherit sasl boost Security CoreFoundation cctools stdenv;
};
in
buildMongoDB {
version = "6.0.1";
sha256 = "sha256-3LdyPHj2t7JskCJh6flCYl6qjfAbRXHsi+19L+0O2Zs=";
patches = [ ];
}