From e8d0dba64483e2e5db7d64ab17ecb9fe05f8f991 Mon Sep 17 00:00:00 2001 From: c3n21 <37077738+c3n21@users.noreply.github.com> Date: Mon, 21 Apr 2025 15:40:31 +0200 Subject: [PATCH] vimPlugins.sonarlint-nvim: init at 0-unstable-2025-04-18 --- .../non-generated/sonarlint-nvim/default.nix | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pkgs/applications/editors/vim/plugins/non-generated/sonarlint-nvim/default.nix diff --git a/pkgs/applications/editors/vim/plugins/non-generated/sonarlint-nvim/default.nix b/pkgs/applications/editors/vim/plugins/non-generated/sonarlint-nvim/default.nix new file mode 100644 index 000000000000..0a6bff6bebdc --- /dev/null +++ b/pkgs/applications/editors/vim/plugins/non-generated/sonarlint-nvim/default.nix @@ -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 ]; + }; +}