2021-06-06 07:54:09 +00:00
|
|
|
{ stdenv, buildPecl, lib, pcre2, pkg-config, cyrus_sasl, icu64
|
2021-03-09 03:18:52 +00:00
|
|
|
, openssl, snappy, zlib, darwin }:
|
2020-10-16 20:44:37 +00:00
|
|
|
|
|
|
|
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-03-09 03:18:52 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [
|
2020-10-16 20:44:37 +00:00
|
|
|
cyrus_sasl
|
|
|
|
icu64
|
|
|
|
openssl
|
|
|
|
snappy
|
|
|
|
zlib
|
2021-06-06 07:54:09 +00:00
|
|
|
pcre2
|
2021-03-09 03:18:52 +00:00
|
|
|
] ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
|
2020-10-16 20:44:37 +00:00
|
|
|
|
|
|
|
meta.maintainers = lib.teams.php.members;
|
|
|
|
}
|