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 b69afde commit f4a451bCopy full SHA for f4a451b
pkgs/package-overrides.nix
@@ -729,7 +729,16 @@ in
729
730
xdebug =
731
# xdebug versions were determined using https://xdebug.org/docs/compat
732
- if lib.versionAtLeast prev.php.version "8.0" then
+ if lib.versionAtLeast prev.php.version "8.3" then
733
+ prev.extensions.xdebug.overrideAttrs (attrs: {
734
+ name = "xdebug-3.3.0alpha2";
735
+ version = "3.3.0alpha2";
736
+ src = pkgs.fetchurl {
737
+ url = "http://pecl.php.net/get/xdebug-3.3.0alpha2.tgz";
738
+ hash = "sha256-wcV71/taOpqs2ckX4vZT1TOWpl1JiP2s6EgPyX9EI6c=";
739
+ };
740
+ })
741
+ else if lib.versionAtLeast prev.php.version "8.0" then
742
prev.extensions.xdebug
743
else if lib.versionAtLeast prev.php.version "7.2" then
744
prev.extensions.xdebug.overrideAttrs (attrs: {
0 commit comments