php84: 8.4.12 -> 8.4.13

ChangeLog: https://www.php.net/ChangeLog-8.php#8.4.13
This commit is contained in:
Maximilian Bosch
2025-10-03 23:58:17 +02:00
parent 5d8279161e
commit 9fefb7cdc4
2 changed files with 11 additions and 2 deletions

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

View File

@@ -1,5 +1,6 @@
{
stdenv,
fetchpatch,
config,
callPackages,
lib,
@@ -445,6 +446,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";