php84: 8.4.12 -> 8.4.13 (#448351)

This commit is contained in:
Pol Dellaiera
2025-10-04 07:57:46 +00:00
committed by GitHub
2 changed files with 11 additions and 2 deletions
+2 -2
View File
@@ -4,8 +4,8 @@ let
base = callPackage ./generic.nix (
_args
// {
version = "8.4.12";
hash = "sha256-Lr1TgusJDWAwh9pkntId5ksHlha8mgKrvFMribF+NGg=";
version = "8.4.13";
hash = "sha256-hRgd3Kez4D8UhSGwQ71iQRlQ1GjGZ9tkAEefGxCBIZQ=";
}
);
in
+9
View File
@@ -1,5 +1,6 @@
{
stdenv,
fetchpatch,
config,
callPackages,
lib,
@@ -446,6 +447,14 @@ lib.makeScope pkgs.newScope (
configureFlags = [
"--enable-dom"
];
patches = lib.optionals (lib.versionAtLeast php.version "8.4") [
# Fix build of ext-dom.
# https://github.com/php/php-src/pull/20023 (will be part of 8.4.14)
(fetchpatch {
url = "https://github.com/php/php-src/commit/4fe040290da2822c70d3b60d30a2c1256264735d.patch";
hash = "sha256-hCs59X5gCApXMjU9dKEtgdTJBHYq3BcKr9tlQjRCTIA=";
})
];
}
{
name = "enchant";