2020-10-16 20:44:37 +00:00
|
|
|
{ buildPecl, lib, pkgs, pcre' }:
|
|
|
|
|
|
|
|
buildPecl {
|
|
|
|
pname = "mongodb";
|
|
|
|
|
2020-11-30 08:33:03 +00:00
|
|
|
version = "1.9.0";
|
|
|
|
sha256 = "16mbw3p80qxsj86nmjbfch8wv6jaq8wbz4rlpmixvhj9nwbp37hs";
|
2020-10-16 20:44:37 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ pkgs.pkg-config ];
|
2020-10-16 20:44:37 +00:00
|
|
|
buildInputs = with pkgs; [
|
|
|
|
cyrus_sasl
|
|
|
|
icu64
|
|
|
|
openssl
|
|
|
|
snappy
|
|
|
|
zlib
|
|
|
|
pcre'
|
|
|
|
] ++ lib.optional (pkgs.stdenv.isDarwin) pkgs.darwin.apple_sdk.frameworks.Security;
|
|
|
|
|
|
|
|
meta.maintainers = lib.teams.php.members;
|
|
|
|
}
|