29 lines
745 B
Nix
29 lines
745 B
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
vimUtils,
|
||
|
|
fetchFromGitLab,
|
||
|
|
nix-update-script,
|
||
|
|
}:
|
||
|
|
vimUtils.buildVimPlugin {
|
||
|
|
pname = "sonarlint.nvim";
|
||
|
|
version = "0-unstable-2025-10-04";
|
||
|
|
|
||
|
|
src = fetchFromGitLab {
|
||
|
|
owner = "schrieveslaach";
|
||
|
|
repo = "sonarlint.nvim";
|
||
|
|
rev = "1d49a469265e271f02b6efcf09c215e4560bd5fa";
|
||
|
|
hash = "sha256-1eUwgHvegULo33xVjvV3b90fSlJ8Ax10iDCZE4IPo58=";
|
||
|
|
};
|
||
|
|
|
||
|
|
passthru.updateScript = nix-update-script {
|
||
|
|
extraArgs = [ "--version=branch" ];
|
||
|
|
};
|
||
|
|
|
||
|
|
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 ];
|
||
|
|
};
|
||
|
|
}
|