My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/php-packages/redis/default.nix

18 lines
329 B

{ buildPecl, lib, php }:
buildPecl {
pname = "redis";
version = "5.3.2";
sha256 = "1cfsbxf3q3im0cmalgk76jpz581zr92z03c1viy93jxb53k2vsgl";
internalDeps = with php.extensions; [
json
session
] ++ lib.optionals (lib.versionOlder php.version "7.4") [
hash
];
meta.maintainers = lib.teams.php.members;
}