Skip to content

Commit

Permalink
fix eval
Browse files Browse the repository at this point in the history
  • Loading branch information
domenkozar committed Mar 19, 2024
1 parent db909b7 commit 99c274e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nix/tools.nix
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,14 @@ in
inherit (nodePackages) eslint markdownlint-cli prettier pyright cspell;
inherit (ocamlPackages) ocp-indent;
inherit (python3Packages) autoflake black flake8 flynt isort mkdocs-linkcheck mypy pylint pyupgrade;
inherit (php82Packages) php-cs-fixer phpcbf phpcs psalm;
inherit (php82Packages) php-cs-fixer psalm;
# FIXME: workaround build failure
phpstan = php82Packages.phpstan.overrideAttrs (old: {
composerStrictValidation = false;
});
# these two are for backwards compatibility
phpcbf = php82Packages.php-codesniffer or php82Packages.phpcbf;
phpcs = php82Packages.php-codesniffer or php82Packages.phpcs;
lua-language-server = lua-language-server;
purs-tidy = nodePackages.purs-tidy or null;
cabal2nix-dir = callPackage ./cabal2nix-dir { };
Expand Down

0 comments on commit 99c274e

Please sign in to comment.