php: 8.4.15 -> 8.4.16, 8.3.28 -> 8.3.29, 8.2.29 -> 8.2.30, fixes CVE-2025-14177, CVE-2025-14178, CVE-2025-14180, GHSA-www2-q4fc-65wf (#475115)

This commit is contained in:
Maximilian Bosch
2025-12-30 09:36:09 +00:00
committed by GitHub
4 changed files with 6 additions and 16 deletions
+2 -2
View File
@@ -4,8 +4,8 @@ let
base = callPackage ./generic.nix (
_args
// {
version = "8.2.29";
hash = "sha256-UZeejRmMut4qrU/+n1PdPwT5YC0wieWXmYXgWK3kJnw=";
version = "8.2.30";
hash = "sha256-EEggtsj8lZ3eSzNCE19CvavyRuhpGKFjgaF9hEfIZvo=";
}
);
in
+2 -2
View File
@@ -4,8 +4,8 @@ let
base = callPackage ./generic.nix (
_args
// {
version = "8.3.28";
hash = "sha256-1bOF7jUexGPIXUfutTtRFW80g+rz/0OnrVCAwrbUxVc=";
version = "8.3.29";
hash = "sha256-xzNyEuZVMl1JnqgQj6dvad3eL/98sPrTaqY+7VQMuKU=";
}
);
in
+2 -2
View File
@@ -4,8 +4,8 @@ let
base = callPackage ./generic.nix (
_args
// {
version = "8.4.15";
hash = "sha256-txVb3UmNYNY+S8Mg3CJIY5dtMbW9kzlplybJYSVaMZc=";
version = "8.4.16";
hash = "sha256-bEjGXrpqL3oQKSXQh3Ijmx9FEQrtIYf92BuTPtQ5xpI=";
}
);
in
-10
View File
@@ -447,16 +447,6 @@ lib.makeScope pkgs.newScope (
configureFlags = [
"--enable-dom"
];
patches = lib.optionals (lib.versionOlder php.version "8.3") [
# Fix gh10234 test with libxml 2.15.0
(fetchpatch {
url = "https://github.com/php/php-src/commit/d6e70e705323a50b616ffee9402245ab97de3e4e.patch";
hash = "sha256-Axu09l3uQ83qe30aDsR+Bt29cJiF4mLknwDyQf94vic=";
includes = [
"ext/dom/tests/gh10234.phpt"
];
})
];
}
{
name = "enchant";