2021-02-27 10:29:20 +00:00
|
|
|
{ stdenv, buildPecl, lib, pcre', pkg-config, cyrus_sasl, icu64
|
|
|
|
, openssl, snappy, zlib, darwin }:
|
2020-10-11 18:14:22 +01:00
|
|
|
|
|
|
|
buildPecl {
|
|
|
|
pname = "mongodb";
|
|
|
|
|
2020-11-29 08:15:42 +00:00
|
|
|
version = "1.9.0";
|
|
|
|
sha256 = "16mbw3p80qxsj86nmjbfch8wv6jaq8wbz4rlpmixvhj9nwbp37hs";
|
2020-10-11 18:14:22 +01:00
|
|
|
|
2021-02-27 10:29:20 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [
|
2020-10-11 18:14:22 +01:00
|
|
|
cyrus_sasl
|
|
|
|
icu64
|
|
|
|
openssl
|
|
|
|
snappy
|
|
|
|
zlib
|
|
|
|
pcre'
|
2021-02-27 17:43:22 +00:00
|
|
|
] ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
|
2020-10-11 18:14:22 +01:00
|
|
|
|
|
|
|
meta.maintainers = lib.teams.php.members;
|
|
|
|
}
|