mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
20 lines
496 B
Nix
20 lines
496 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;
|
|
maintainers = lib.teams.php.members;
|
|
};
|
|
}
|