Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

18 lines
496 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.maintainers.ostrolucky ];
teams = [ lib.teams.php ];
};
}