Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildPecl, lib }: 2 3buildPecl rec { 4 version = "2.2.0"; 5 pname = "msgpack"; 6 7 sha256 = "sha256-gqoeQExf9U7EHSogEwXNZZTtFKdSnpEZ+nykV+S70So="; 8 9 meta = { 10 changelog = "https://pecl.php.net/package-info.php?package=msgpack&version=${version}"; 11 description = "PHP extension for interfacing with MessagePack"; 12 homepage = "https://github.com/msgpack/msgpack-php"; 13 license = lib.licenses.bsd3; 14 maintainers = [ lib.maintainers.ostrolucky ]; 15 teams = [ lib.teams.php ]; 16 }; 17}