at master 496 B view raw
1{ buildPecl, lib }: 2 3buildPecl rec { 4 version = "3.0.0"; 5 pname = "msgpack"; 6 7 sha256 = "sha256-VTBqhHl9OZxrJpGB7EhGNPGL6hMwu9nXQFBDxZfeac0="; 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}