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.
xdebug
1 parent 8db4163 commit 3e6c133Copy full SHA for 3e6c133
pkgs/package-overrides.nix
@@ -745,7 +745,16 @@ in
745
746
xdebug =
747
# xdebug versions were determined using https://xdebug.org/docs/compat
748
- if lib.versionAtLeast prev.php.version "8.0" then
+ if lib.versionAtLeast prev.php.version "8.3" then
749
+ prev.extensions.xdebug.overrideAttrs (attrs: {
750
+ name = "xdebug-3.3.0alpha2";
751
+ version = "3.3.0alpha2";
752
+ src = pkgs.fetchurl {
753
+ url = "http://pecl.php.net/get/xdebug-3.3.0alpha2.tgz";
754
+ hash = "sha256-wcV71/taOpqs2ckX4vZT1TOWpl1JiP2s6EgPyX9EI6c=";
755
+ };
756
+ })
757
+ else if lib.versionAtLeast prev.php.version "8.0" then
758
prev.extensions.xdebug
759
else if lib.versionAtLeast prev.php.version "7.2" then
760
prev.extensions.xdebug.overrideAttrs (attrs: {
0 commit comments