Unverified Commit 43556783 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

vimPlugins.lsp-progress-nvim: init at 1.0.13-1 (#337717)

parents c78e599b 34161008
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -45,6 +45,7 @@ lpeglabel,,,,1.6.0,,
lrexlib-gnu,,,,,,
lrexlib-pcre,,,,,,vyp
lrexlib-posix,,,,,,
lsp-progress.nvim,,,,,,gepbird
lua-cjson,,,,,,
lua-cmsgpack,,,,,,
lua-curl,,,,,,
+5 −0
Original line number Diff line number Diff line
@@ -1004,6 +1004,11 @@
    dependencies = with self; [ plenary-nvim ];
  };

  lsp-progress-nvim = neovimUtils.buildNeovimPlugin {
    luaAttr = "lsp-progress-nvim";
    nvimRequireCheck = "lsp-progress";
  };

  luasnip = super.luasnip.overrideAttrs {
    dependencies = with self; [ luaPackages.jsregexp ];
  };
+23 −0
Original line number Diff line number Diff line
@@ -1086,6 +1086,29 @@ buildLuarocksPackage {
  };
}) {};

lsp-progress-nvim = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder }:
buildLuarocksPackage {
  pname = "lsp-progress.nvim";
  version = "1.0.13-1";
  knownRockspec = (fetchurl {
    url    = "mirror://luarocks/lsp-progress.nvim-1.0.13-1.rockspec";
    sha256 = "13h0kyrri0bvhkzvyngamsacx62n2dhb2j2gs495z4ghyh1p345i";
  }).outPath;
  src = fetchzip {
    url    = "https://github.com/linrongbin16/lsp-progress.nvim/archive/d5f4d28efe75ce636bfbe271eb45f39689765aab.zip";
    sha256 = "0h63z55gwv36rahhha8vkbxb9n4f8psa265khz719i97j17x39rr";
  };

  disabled = luaOlder "5.1";

  meta = {
    homepage = "https://linrongbin16.github.io/lsp-progress.nvim/";
    description = "A performant lsp progress status for Neovim.";
    maintainers = with lib.maintainers; [ gepbird ];
    license.fullName = "MIT";
  };
}) {};

lua-cjson = callPackage({ buildLuarocksPackage, fetchFromGitHub, fetchurl, luaOlder }:
buildLuarocksPackage {
  pname = "lua-cjson";