Elis Hirwing 7821201018
php.extensions.swoole: 4.6.4 -> 4.6.7
(cherry picked from commit 2fc95948446d0b3ef0284956fc62b9e968dc9376)
2021-06-13 12:24:35 +02:00

22 lines
543 B
Nix

{ lib, buildPecl, php, valgrind, pcre' }:
buildPecl {
pname = "swoole";
version = "4.6.7";
sha256 = "107wp403z8skkqrcm240vyyy6wqx5a4v2bqhlshlknyi14r2v165";
buildInputs = [ valgrind pcre' ];
internalDeps = lib.optionals (lib.versionOlder php.version "7.4") [ php.extensions.hash ];
doCheck = true;
checkTarget = "tests";
meta = with lib; {
description = "Coroutine-based concurrency library for PHP";
license = licenses.asl20;
homepage = "https://www.swoole.co.uk/";
maintainers = teams.php.members;
};
}