vimPlugins.nvim-cmp: follow HEAD and update

This commit is contained in:
figsoda 2022-10-15 15:34:36 -04:00
parent 5fc700cae3
commit 46769538fe
2 changed files with 16 additions and 11 deletions

@ -87,7 +87,7 @@ mediator_lua,,,,,,
mpack,,,,,, mpack,,,,,,
moonscript,https://github.com/leafo/moonscript.git,dev-1,,,,arobyn moonscript,https://github.com/leafo/moonscript.git,dev-1,,,,arobyn
nvim-client,https://github.com/neovim/lua-client.git,,,,, nvim-client,https://github.com/neovim/lua-client.git,,,,,
nvim-cmp,,,,,, nvim-cmp,https://github.com/hrsh7th/nvim-cmp,,,,,
penlight,https://github.com/lunarmodules/Penlight.git,,,,,alerque penlight,https://github.com/lunarmodules/Penlight.git,,,,,alerque
plenary.nvim,https://github.com/nvim-lua/plenary.nvim.git,,,,5.1, plenary.nvim,https://github.com/nvim-lua/plenary.nvim.git,,,,5.1,
rapidjson,https://github.com/xpol/lua-rapidjson.git,,,,, rapidjson,https://github.com/xpol/lua-rapidjson.git,,,,,

1 name src ref server version luaversion maintainers
87 mpack
88 moonscript https://github.com/leafo/moonscript.git dev-1 arobyn
89 nvim-client https://github.com/neovim/lua-client.git
90 nvim-cmp https://github.com/hrsh7th/nvim-cmp
91 penlight https://github.com/lunarmodules/Penlight.git alerque
92 plenary.nvim https://github.com/nvim-lua/plenary.nvim.git 5.1
93 rapidjson https://github.com/xpol/lua-rapidjson.git

@ -2606,19 +2606,24 @@ buildLuarocksPackage {
}) {}; }) {};
nvim-cmp = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast nvim-cmp = callPackage({ buildLuarocksPackage, luaOlder, luaAtLeast
, fetchzip, lua , fetchgit, lua
}: }:
buildLuarocksPackage { buildLuarocksPackage {
pname = "nvim-cmp"; pname = "nvim-cmp";
version = "0.0.1-2"; version = "scm-1";
knownRockspec = (fetchurl {
url = "mirror://luarocks/nvim-cmp-0.0.1-2.rockspec"; src = fetchgit ( removeAttrs (builtins.fromJSON ''{
sha256 = "0jx4i2rnc7zmy1bbqp6fqymlklc7xvqyv35prjl3ld05c4dpg7nq"; "url": "https://github.com/hrsh7th/nvim-cmp",
}).outPath; "rev": "3347dd3c59b6c62288d861ddb92b9ba1227257a8",
src = fetchzip { "date": "2022-10-15T15:20:35+09:00",
url = "http://github.com/hrsh7th/nvim-cmp/archive/v0.0.1.zip"; "path": "/nix/store/yz8ak36srpzaw6qm2gip07ppl6zladcd-nvim-cmp",
sha256 = "0649n476jd6dqd79fmywmigz19sb0s344ablwr25gr23fp46hzaz"; "sha256": "1ca9mpxq7cqi36mqz0cgyhl9w1dwcalwh6v4kj377g1vqslyl5ay",
}; "fetchLFS": false,
"fetchSubmodules": true,
"deepClone": false,
"leaveDotGit": false
}
'') ["date" "path"]) ;
disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.4"); disabled = with lua; (luaOlder "5.1") || (luaAtLeast "5.4");
propagatedBuildInputs = [ lua ]; propagatedBuildInputs = [ lua ];