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.

16 lines
482 B
Nix
Raw Normal View History

2022-03-02 11:55:53 +01: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 09:42:36 +02:00
version = "4.4.13";
sha256 = "sha256-ebg3R6P+tjRvizDzsl7mZzhTfqIaRJPfHBu0IfRvtS8=";
2022-03-02 11:55:53 +01:00
patches = [
./forget-build-dependencies-4-4.patch
2022-07-07 12:06:14 +02:00
./fix-build-with-boost-1.79-4_4.patch
2022-03-02 11:55:53 +01:00
] ++ lib.optionals stdenv.isDarwin [ ./asio-no-experimental-string-view-4-4.patch ];
}