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 54e347d commit 0694588Copy full SHA for 0694588
pkgs/package-overrides.nix
@@ -124,7 +124,8 @@ in
124
dom = prev.extensions.dom.overrideAttrs (attrs: {
125
patches =
126
let
127
- upstreamPatches = attrs.patches or [ ];
+ # TODO: Find a way to find the lowest supported PHP version supported in `nixpkgs` and use it here.
128
+ upstreamPatches = lib.optionals (lib.versionAtLeast prev.php.version "8.2") (attrs.patches or [ ]);
129
130
ourPatches =
131
lib.optionals (lib.versionOlder prev.php.version "7.2") [
0 commit comments