mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-02 10:14:09 +00:00
13 lines
332 B
Nix
13 lines
332 B
Nix
{ stdenv, callPackage, lib, sasl, boost, Security }:
|
|
|
|
let
|
|
buildMongoDB = callPackage ./mongodb.nix { inherit sasl; inherit boost; inherit Security; };
|
|
in
|
|
buildMongoDB {
|
|
version = "4.0.9";
|
|
sha256 = "0klm6dl1pr9wq4ghm2jjn3wzs1zpj1aabqjqjfddanxq2an7scph";
|
|
patches = [
|
|
./forget-build-dependencies.patch
|
|
];
|
|
}
|