phpExtensions.msgpack: init at 2.2.0RC2

This commit is contained in:
Gabriel Ostrolucký
2023-03-13 17:52:28 +01:00
parent 7953ef015a
commit a47d2b3dde
2 changed files with 18 additions and 0 deletions
@@ -0,0 +1,16 @@
{ buildPecl, lib }:
buildPecl rec {
version = "2.2.0RC2";
pname = "msgpack";
sha256 = "sha256-bVV043knbk7rionXqB70RKa1zlJ5K/Nw0oTXZllmJOg=";
meta = with lib; {
changelog = "https://pecl.php.net/package-info.php?package=msgpack&version=${version}";
description = "PHP extension for interfacing with MessagePack";
license = licenses.bsd3;
homepage = "https://github.com/msgpack/msgpack-php";
maintainers = teams.php.members ++ [ maintainers.ostrolucky ];
};
}