vimPlugins.sonarlint-nvim: init at 0-unstable-2025-04-18 (#377720)

This commit is contained in:
Gaétan Lepage
2025-04-21 17:12:21 +02:00
committed by GitHub
2 changed files with 32 additions and 0 deletions
+6
View File
@@ -22455,6 +22455,12 @@
github = "sinanmohd";
githubId = 69694713;
};
sinics = {
name = "Zhifan";
email = "nonno.felice69uwu@gmail.com";
matrix = "@c3n21:matrix.org";
githubId = 37077738;
};
sioodmy = {
name = "Antoni Sokołowski";
github = "sioodmy";
@@ -0,0 +1,26 @@
{
lib,
vimUtils,
fetchFromGitLab,
nix-update-script,
}:
vimUtils.buildVimPlugin {
pname = "sonarlint.nvim";
version = "0-unstable-2025-04-18";
src = fetchFromGitLab {
owner = "schrieveslaach";
repo = "sonarlint.nvim";
rev = "0b78f1db800f9ba76f81de773ba09ce2222bdcc2";
hash = "sha256-EUwuIFFe4tmw8u6RqEvOLL0Yi8J5cLBQx7ICxnmkT4k=";
};
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://gitlab.com/schrieveslaach/sonarlint.nvim";
description = "Extensions for the built-in Language Server Protocol support in Neovim for sonarlint-language-server";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.sinics ];
};
}