phpExtensions.msgpack: init at 2.2.0RC2

This commit is contained in:
Gabriel Ostrolucký 2023-03-12 11:52:22 +01:00
parent 7953ef015a
commit a47d2b3dde
No known key found for this signature in database
GPG key ID: C79AD01519EFB134
2 changed files with 18 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -244,6 +244,8 @@ lib.makeScope pkgs.newScope (self: with self; {
mongodb = callPackage ../development/php-packages/mongodb { };
msgpack = callPackage ../development/php-packages/msgpack { };
oci8 = callPackage ../development/php-packages/oci8 { };
openswoole = callPackage ../development/php-packages/openswoole { };