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