nixpkgs/pkgs/servers/nosql/mongodb/4.4.nix

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

15 lines
440 B
Nix
Raw Normal View History

2022-03-02 10:55:53 +00:00
{ stdenv, callPackage, lib, sasl, boost, Security, CoreFoundation, cctools }:
let
buildMongoDB = callPackage ./mongodb.nix {
inherit sasl boost Security CoreFoundation cctools;
};
in
buildMongoDB {
2022-04-09 07:42:36 +00:00
version = "4.4.13";
sha256 = "sha256-ebg3R6P+tjRvizDzsl7mZzhTfqIaRJPfHBu0IfRvtS8=";
2022-03-02 10:55:53 +00:00
patches = [
./forget-build-dependencies-4-4.patch
] ++ lib.optionals stdenv.isDarwin [ ./asio-no-experimental-string-view-4-4.patch ];
}