mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
treewide: remove outdated broken package markings
Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
parent
854a5b5b38
commit
baa99016bc
6 changed files with 5 additions and 74 deletions
|
|
@ -25,14 +25,10 @@ rec {
|
|||
|
||||
# 2025-09-13 build failure
|
||||
inko = sType.broken;
|
||||
# 2025-09-13 build failure
|
||||
commitmsgfmt = sType.broken;
|
||||
# 2025-09-17 build failure
|
||||
gci = sType.broken;
|
||||
# 2025-10-08 build failure (haskellPackages.hindent)
|
||||
hindent = sType.broken;
|
||||
# 2025-10-12 build failure (luaformatter depends on broken antlr-runtime-cpp)
|
||||
lua-format = sType.broken;
|
||||
|
||||
format-queries = null; # Uses neovim itself
|
||||
init = null; # Internal thingamajig
|
||||
|
|
@ -118,6 +114,7 @@ rec {
|
|||
js_beautify = nodePackages.js-beautify;
|
||||
jsonnetfmt = jsonnet;
|
||||
inherit (texlive.pkgs) latexindent;
|
||||
lua-format = luaformatter;
|
||||
mago_format = mago;
|
||||
mago_lint = mago;
|
||||
markdownlint = markdownlint-cli;
|
||||
|
|
|
|||
|
|
@ -17,20 +17,6 @@ let
|
|||
# build failure (fixed in https://github.com/NixOS/nixpkgs/pull/455238)
|
||||
"yamlfix"
|
||||
|
||||
# TODO: 2025-10-03
|
||||
# Transient dependency `vmr` has a build failure
|
||||
# https://github.com/NixOS/nixpkgs/issues/431811
|
||||
"roslyn-ls"
|
||||
|
||||
# 2025-07-25 python313Packages.lsp-tree-sitter is marked as broken
|
||||
"autotools-language-server"
|
||||
|
||||
# 2025-04-01 php-cs-fixer is marked as broken
|
||||
"php-cs-fixer"
|
||||
|
||||
# 2025-10-12 build failure (luaformatter depends on broken antlr-runtime-cpp)
|
||||
"luaformatter"
|
||||
|
||||
# 2025-10-12 dependency mbedtls is marked as insecure
|
||||
"haxe"
|
||||
]
|
||||
|
|
@ -90,15 +76,11 @@ let
|
|||
# 2025-09-27 build failure
|
||||
"open-policy-agent"
|
||||
|
||||
# 2025-09-26 build failure
|
||||
"verilator"
|
||||
|
||||
# 2025-09-08 build failure
|
||||
"mint"
|
||||
|
||||
# Marked as broken
|
||||
"akku-scheme-langserver"
|
||||
"muon"
|
||||
"rubyfmt"
|
||||
"wl-clipboard" # wayland
|
||||
]
|
||||
|
|
@ -127,10 +109,6 @@ let
|
|||
# 2025-06-24 build failure
|
||||
"gleam"
|
||||
|
||||
# 2024-01-04 build failure
|
||||
"texlive-combined-medium"
|
||||
"texlive"
|
||||
|
||||
# 2025-09-16 zig/zig-hook is marked as broken
|
||||
# https://github.com/NixOS/nixpkgs/commit/bc725b12b2595951a3f4b112d59716d30b41001a
|
||||
"zf"
|
||||
|
|
@ -150,10 +128,6 @@ let
|
|||
# 2025-09-08, build failure
|
||||
# https://github.com/NixOS/nixpkgs/pull/441058
|
||||
"verible"
|
||||
|
||||
# 2025-09-08 ttfautohint hangs forever
|
||||
"texlive-combined-medium"
|
||||
"texlive"
|
||||
];
|
||||
|
||||
isEnabled = p: !(builtins.elem (lib.getName p) disabledTests);
|
||||
|
|
|
|||
|
|
@ -37,18 +37,8 @@ let
|
|||
let
|
||||
|
||||
disabled = [
|
||||
# TODO: 2025-10-03
|
||||
# Transient dependency `vmr` has a build failure
|
||||
# https://github.com/NixOS/nixpkgs/issues/431811
|
||||
"roslyn_ls"
|
||||
|
||||
# TODO: 2025-07-25 python313Packages.lsp-tree-sitter marked as broken
|
||||
"autotools_ls"
|
||||
|
||||
# TODO: 2025-07-25 build failure
|
||||
"mint"
|
||||
"nextls"
|
||||
"ts_query_ls"
|
||||
|
||||
# DEPRECATED SERVERS
|
||||
# See https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig.lua
|
||||
|
|
|
|||
|
|
@ -21,22 +21,7 @@
|
|||
"JSON"
|
||||
];
|
||||
|
||||
brokenTools = [
|
||||
# 2025-10-12 build failure (luaformatter depends on broken antlr-runtime-cpp)
|
||||
"lua_format"
|
||||
|
||||
# TODO Added 2025-04-01
|
||||
# php-cs-fixer is marked as broken
|
||||
"php_cs_fixer"
|
||||
|
||||
# TODO: Added 2025-04-19 broken dependency
|
||||
"phan"
|
||||
"php"
|
||||
"phpcbf"
|
||||
"phpcs"
|
||||
"phpstan"
|
||||
"psalm"
|
||||
];
|
||||
brokenTools = [ ];
|
||||
|
||||
# TODO: respect unpackaged from generated
|
||||
unpackaged = [
|
||||
|
|
|
|||
|
|
@ -1,18 +1,10 @@
|
|||
{
|
||||
empty = {
|
||||
# TODO: 2025-10-03
|
||||
# Transient dependency `vmr` has a build failure
|
||||
# https://github.com/NixOS/nixpkgs/issues/431811
|
||||
dependencies.roslyn_ls.enable = false;
|
||||
plugins.roslyn.enable = true;
|
||||
plugins.rzls.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
# TODO: 2025-10-03
|
||||
# Transient dependency `vmr` has a build failure
|
||||
# https://github.com/NixOS/nixpkgs/issues/431811
|
||||
dependencies.roslyn_ls.enable = false;
|
||||
plugins.roslyn.enable = true;
|
||||
plugins.rzls = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -1,19 +1,12 @@
|
|||
{ pkgs, ... }:
|
||||
let
|
||||
# TODO: Added 2025-06-24 texlive dependency broken
|
||||
disableTexlivePackageOnDarwin = pkgs.lib.optionalAttrs pkgs.stdenv.isDarwin {
|
||||
texlivePackage = null;
|
||||
};
|
||||
in
|
||||
{
|
||||
empty = {
|
||||
plugins.vimtex = disableTexlivePackageOnDarwin // {
|
||||
plugins.vimtex = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
example = {
|
||||
plugins.vimtex = disableTexlivePackageOnDarwin // {
|
||||
plugins.vimtex = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
|
|
@ -70,7 +63,7 @@ in
|
|||
};
|
||||
|
||||
no-packages = {
|
||||
plugins.vimtex = disableTexlivePackageOnDarwin // {
|
||||
plugins.vimtex = {
|
||||
enable = true;
|
||||
xdotoolPackage = null;
|
||||
zathuraPackage = null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue