mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
phpExtensions.parallel: init at 1.2.4
This commit is contained in:
parent
e4048428cf
commit
bab2c41591
20
pkgs/development/php-packages/parallel/default.nix
Normal file
20
pkgs/development/php-packages/parallel/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
buildPecl,
|
||||
lib,
|
||||
php,
|
||||
}:
|
||||
|
||||
buildPecl {
|
||||
pname = "parallel";
|
||||
version = "1.2.4";
|
||||
hash = "sha256-s9W9aZpQsJLdzZ/d2E1iGDsMTAAjeWbOgWeKP6nNp0A=";
|
||||
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;
|
||||
};
|
||||
}
|
@ -301,6 +301,8 @@ in {
|
||||
|
||||
openswoole = callPackage ../development/php-packages/openswoole { };
|
||||
|
||||
parallel = callPackage ../development/php-packages/parallel { };
|
||||
|
||||
pdlib = callPackage ../development/php-packages/pdlib { };
|
||||
|
||||
pcov = callPackage ../development/php-packages/pcov { };
|
||||
|
Loading…
Reference in New Issue
Block a user