php: add lower version bound constraint to avoid applying it to older PHP versions.
This commit is contained in:
parent
ca43ced0ae
commit
6a6c83c138
1 changed files with 2 additions and 1 deletions
|
@ -370,7 +370,8 @@ lib.makeScope pkgs.newScope (self: with self; {
|
|||
configureFlags = [
|
||||
"--enable-dom"
|
||||
];
|
||||
patches = lib.optionals (lib.versionOlder php.version "8.2.14") [
|
||||
# Add a PHP lower version bound constraint to avoid applying the patch on older PHP versions.
|
||||
patches = lib.optionals (lib.versionOlder php.version "8.2.14" && lib.versionAtLeast php.version "8.1") [
|
||||
# Fix tests with libxml 2.12
|
||||
# Part of 8.3.1RC1+, 8.2.14RC1+
|
||||
(fetchpatch {
|
||||
|
|
Loading…
Reference in a new issue