We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0694588 commit cd13553Copy full SHA for cd13553
pkgs/package-overrides.nix
@@ -181,6 +181,18 @@ in
181
# Patch rebased from https://github.com/php/php-src/commit/0a39890c967aa57225bb6bdf4821aff7a3a3c082
182
# Fix compilation errors with libxml2 2.12
183
./patches/libxml-ext.patch
184
+ ]
185
+ ++
186
+ lib.optionals
187
+ (lib.versionAtLeast prev.php.version "8.1" && lib.versionOlder prev.php.version "8.2")
188
+ [
189
+ (pkgs.fetchpatch {
190
+ url = "https://github.com/php/php-src/commit/d6e70e705323a50b616ffee9402245ab97de3e4e.patch";
191
+ hash = "sha256-Axu09l3uQ83qe30aDsR+Bt29cJiF4mLknwDyQf94vic=";
192
+ includes = [
193
+ "ext/dom/tests/gh10234.phpt"
194
+ ];
195
+ })
196
];
197
in
198
ourPatches ++ upstreamPatches;
0 commit comments