depot/third_party/nixpkgs/pkgs/development/php-packages/msgpack/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

16 lines
490 B
Nix

{ buildPecl, lib }:
buildPecl rec {
version = "2.2.0";
pname = "msgpack";
sha256 = "sha256-gqoeQExf9U7EHSogEwXNZZTtFKdSnpEZ+nykV+S70So=";
meta = {
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";
license = lib.licenses.bsd3;
maintainers = lib.teams.php.members ++ [ lib.maintainers.ostrolucky ];
};
}