blob: c3ab601ae1d5c755f6a1950c4cc01c5acda9a10b (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{
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;
maintainers = lib.teams.php.members;
};
}
|