mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-05 02:23:07 +03:00
vimPlugins.nvim-cmp: follow HEAD and update
This commit is contained in:
parent
5fc700cae3
commit
46769538fe
@ -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,,,,,
|
||||||
|
|
@ -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 ];
|
||||||
|
Loading…
Reference in New Issue
Block a user