2023-03-15 16:39:30 +00:00
|
|
|
{ buildPecl, lib }:
|
|
|
|
|
|
|
|
buildPecl rec {
|
2023-07-15 17:15:38 +00:00
|
|
|
version = "2.2.0";
|
2023-03-15 16:39:30 +00:00
|
|
|
pname = "msgpack";
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
sha256 = "sha256-gqoeQExf9U7EHSogEwXNZZTtFKdSnpEZ+nykV+S70So=";
|
2023-03-15 16:39:30 +00:00
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
meta = {
|
2023-03-15 16:39:30 +00:00
|
|
|
changelog = "https://pecl.php.net/package-info.php?package=msgpack&version=${version}";
|
|
|
|
description = "PHP extension for interfacing with MessagePack";
|
|
|
|
homepage = "https://github.com/msgpack/msgpack-php";
|
2023-07-15 17:15:38 +00:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
maintainers = lib.teams.php.members ++ [ lib.maintainers.ostrolucky ];
|
2023-03-15 16:39:30 +00:00
|
|
|
};
|
|
|
|
}
|