mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-09 03:56:05 +01:00
dependencies: add roslyn_ls
This commit is contained in:
parent
2f8fbcdfd0
commit
6b3bea319b
2 changed files with 7 additions and 1 deletions
|
|
@ -140,6 +140,7 @@ in
|
||||||
opencode.default = "opencode";
|
opencode.default = "opencode";
|
||||||
plantuml.default = "plantuml";
|
plantuml.default = "plantuml";
|
||||||
ripgrep.default = "ripgrep";
|
ripgrep.default = "ripgrep";
|
||||||
|
roslyn_ls.default = "roslyn-ls";
|
||||||
rust-analyzer.default = "rust-analyzer";
|
rust-analyzer.default = "rust-analyzer";
|
||||||
sd.default = "sd";
|
sd.default = "sd";
|
||||||
sed.default = "gnused";
|
sed.default = "gnused";
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,12 @@
|
||||||
let
|
let
|
||||||
inherit (pkgs.stdenv) hostPlatform;
|
inherit (pkgs.stdenv) hostPlatform;
|
||||||
|
|
||||||
disabledDeps = [ ];
|
disabledDeps = [
|
||||||
|
# TODO: 2025-10-03
|
||||||
|
# Transient dependency `vmr` has a build failure
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/431811
|
||||||
|
"roslyn_ls"
|
||||||
|
];
|
||||||
|
|
||||||
isDepEnabled =
|
isDepEnabled =
|
||||||
name: package:
|
name: package:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue