Skip to content

Commit 91b0d0f

Browse files
committed
php: un-pin phpPackages from 8.2
1 parent 462eb20 commit 91b0d0f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

nix/tools.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
, proselint
7070
, python3Packages
7171
, pyright ? nodePackages.pyright
72-
, php82Packages
72+
, phpPackages
7373
, ripsecrets ? null
7474
, reuse
7575
, ruff ? null
@@ -203,14 +203,14 @@ in
203203
inherit (nodePackages) eslint markdownlint-cli prettier cspell;
204204
inherit (ocamlPackages) ocp-indent;
205205
inherit (python3Packages) autoflake black flake8 flynt isort mkdocs-linkcheck mypy openapi-spec-validator pre-commit-hooks pylint pyupgrade;
206-
inherit (php82Packages) php-cs-fixer psalm;
206+
inherit (phpPackages) php-cs-fixer psalm;
207207
# FIXME: workaround build failure
208-
phpstan = php82Packages.phpstan.overrideAttrs (old: {
208+
phpstan = phpPackages.phpstan.overrideAttrs (old: {
209209
composerStrictValidation = false;
210210
});
211211
# these two are for backwards compatibility
212-
phpcbf = php82Packages.php-codesniffer or php82Packages.phpcbf;
213-
phpcs = php82Packages.php-codesniffer or php82Packages.phpcs;
212+
phpcbf = phpPackages.php-codesniffer or phpPackages.phpcbf;
213+
phpcs = phpPackages.php-codesniffer or phpPackages.phpcs;
214214
lua-language-server = lua-language-server;
215215
purs-tidy = nodePackages.purs-tidy or null;
216216
cabal2nix-dir = callPackage ./cabal2nix-dir { };

0 commit comments

Comments
 (0)