Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at gcc-offload 20 lines 496 B view raw
1{ 2 buildPecl, 3 lib, 4 php, 5}: 6 7buildPecl { 8 pname = "parallel"; 9 version = "1.2.4"; 10 hash = "sha256-s9W9aZpQsJLdzZ/d2E1iGDsMTAAjeWbOgWeKP6nNp0A="; 11 meta = { 12 description = "Parallel concurrency API"; 13 # parallel extension requires PHP with ZTS enabled 14 # we mark extension as broken if ZTS support isn't enabled 15 broken = !php.ztsSupport; 16 homepage = "https://pecl.php.net/package/parallel"; 17 license = lib.licenses.php301; 18 maintainers = lib.teams.php.members; 19 }; 20}