Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
{
|
|
buildPecl,
|
|
lib,
|
|
php,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
}:
|
|
|
|
let
|
|
version = "6.0.2";
|
|
in
|
|
buildPecl {
|
|
inherit version;
|
|
pname = "redis";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "phpredis";
|
|
owner = "phpredis";
|
|
rev = version;
|
|
hash = "sha256-Ie31zak6Rqxm2+jGXWg6KN4czHe9e+190jZRQ5VoB+M=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix build with PHP 8.4.
|
|
(fetchpatch {
|
|
url = "https://github.com/phpredis/phpredis/commit/a51215ce2b22bcd1f506780c35b6833471e0b8cb.patch";
|
|
hash = "sha256-DoGPMyuI/IZdF+8jG5faoyG2aM+WDz0obH6S7HoOMX8=";
|
|
})
|
|
|
|
# Fix warning on Darwin.
|
|
(fetchpatch {
|
|
url = "https://github.com/phpredis/phpredis/commit/7de29d57d919f835f902f87a83312ed2549c1a13.patch";
|
|
hash = "sha256-INsSQTwcHQhQiqplAYQGS4zAtaIHWABG61MxnPCsrUM=";
|
|
})
|
|
|
|
# Fix build on Darwin.
|
|
(fetchpatch {
|
|
url = "https://github.com/phpredis/phpredis/commit/c139de3abac1dd33b97ef0de5af41b6e3a78f7ab.patch";
|
|
hash = "sha256-jM9N4ktGU5KAk81sZZJQmzV7y//39nVnfc52KqIvfpU=";
|
|
})
|
|
];
|
|
|
|
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/";
|
|
maintainers = teams.php.members;
|
|
};
|
|
}
|