Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

21 lines
486 B
Nix

{
buildPecl,
lib,
php,
}:
buildPecl {
pname = "parallel";
version = "1.2.6";
hash = "sha256-tFQUbRxEb7gJlec0447akrngkJ0UZqojz5QNfXqvDcA=";
meta = {
description = "Parallel concurrency API";
# parallel extension requires PHP with ZTS enabled
# we mark extension as broken if ZTS support isn't enabled
broken = !php.ztsSupport;
homepage = "https://pecl.php.net/package/parallel";
license = lib.licenses.php301;
teams = [ lib.teams.php ];
};
}