mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
Revert "tests/lsp-servers: disable tests impacted by broken _7zz on x86_64-linux"
This reverts commit 38dd5b07a0
.
This commit is contained in:
parent
e5e109a1c2
commit
fefb588c7f
4 changed files with 2 additions and 33 deletions
|
@ -46,13 +46,6 @@ let
|
|||
# Broken
|
||||
"scheme_langserver"
|
||||
]
|
||||
++ lib.optionals (pkgs.stdenv.hostPlatform.system == "x86_64-linux") [
|
||||
# Those LSP servers depend on pkgs._7zz which is broken as of 2024-11-03
|
||||
# Re-enable when https://github.com/NixOS/nixpkgs/pull/353272 lands on `nixos-unstable`
|
||||
"phpactor"
|
||||
"psalm"
|
||||
"phan"
|
||||
]
|
||||
++ lib.optionals (pkgs.stdenv.hostPlatform.system == "aarch64-linux") [
|
||||
# Binary package not available for this architecture
|
||||
"starpls"
|
||||
|
|
|
@ -144,15 +144,6 @@
|
|||
# As of 2024-11-03, graalvm-ce (dependency of clj-kondo) is broken on x86_64-darwin
|
||||
"clj_kondo"
|
||||
])
|
||||
++ (lib.optionals (pkgs.stdenv.isLinux && pkgs.stdenv.isx86_64) [
|
||||
# TODO: phpPackages.php-cs-fixer is unavailable because its dependency _7zz is broken (as of 2024-11-03)
|
||||
# Re-enable when https://github.com/NixOS/nixpkgs/pull/353272 lands on `nixos-unstable`
|
||||
"phpcbf"
|
||||
"phpcs"
|
||||
"phpcsfixer"
|
||||
"phpmd"
|
||||
"phpstan"
|
||||
])
|
||||
++ (lib.optionals pkgs.stdenv.isAarch64 [
|
||||
"semgrep"
|
||||
"smlfmt"
|
||||
|
|
|
@ -1,16 +1,11 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
empty = {
|
||||
# TODO: pkgs.yazi is unavailable because its dependency _7zz is broken (as of 2024-11-03)
|
||||
# Re-enable when https://github.com/NixOS/nixpkgs/pull/353272 lands on `nixos-unstable`
|
||||
plugins.yazi.enable = pkgs.stdenv.hostPlatform.system != "x86_64-linux";
|
||||
plugins.yazi.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.yazi = {
|
||||
# TODO: pkgs.yazi is unavailable because its dependency _7zz is broken (as of 2024-11-03)
|
||||
# Re-enable when https://github.com/NixOS/nixpkgs/pull/353272 lands on `nixos-unstable`
|
||||
enable = pkgs.stdenv.hostPlatform.system != "x86_64-linux";
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
log_level = "off";
|
||||
|
|
|
@ -32,16 +32,6 @@
|
|||
# re-enable after fixed
|
||||
"dmd"
|
||||
]
|
||||
++ lib.optionals (system == "x86_64-linux") [
|
||||
# TODO: phpPackages.php-cs-fixer is unavailable because its dependency _7zz is broken (as of 2024-11-03)
|
||||
# Re-enable when https://github.com/NixOS/nixpkgs/pull/353272 lands on `nixos-unstable`
|
||||
"phan"
|
||||
"phpcbf"
|
||||
"phpcs"
|
||||
"php_cs_fixer"
|
||||
"phpstan"
|
||||
"psalm"
|
||||
]
|
||||
++ lib.optionals (system == "aarch64-linux") [
|
||||
# Broken as of 2024-07-13
|
||||
# TODO: re-enable this tests when fixed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue