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

32 lines
631 B
Nix

{
buildPecl,
lib,
php,
fetchFromGitHub,
}:
let
version = "6.2.0";
in
buildPecl {
inherit version;
pname = "redis";
src = fetchFromGitHub {
repo = "phpredis";
owner = "phpredis";
rev = version;
hash = "sha256-uUnH+AS4PgIm+uias5T5+W7X5Pzq4hx4c6zAl4OYk1g=";
};
internalDeps = with php.extensions; [ session ];
meta = with lib; {
changelog = "https://github.com/phpredis/phpredis/releases/tag/${version}";
description = "PHP extension for interfacing with Redis";
license = licenses.php301;
homepage = "https://github.com/phpredis/phpredis/";
teams = [ teams.php ];
};
}