nixpkgs/pkgs/development/php-packages/redis/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
418 B
Nix
Raw Normal View History

{ buildPecl, lib, php }:
buildPecl {
pname = "redis";
2022-02-25 01:24:44 +00:00
version = "5.3.7";
sha256 = "sha256-uVgWbM2k9AvRfGmY+eIjkCGuZERnzYrVwV3vQgqtZbA=";
internalDeps = with php.extensions; [
session
];
2021-06-08 09:50:05 +00:00
meta = with lib; {
description = "PHP extension for interfacing with Redis";
license = licenses.php301;
homepage = "https://github.com/phpredis/phpredis/";
maintainers = teams.php.members;
};
}