Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 42 lines 1.0 kB view raw
1{ 2 buildVimPlugin, 3 coc-basedpyright, 4 coc-clangd, 5 coc-css, 6 coc-diagnostic, 7 coc-pyright, 8 coc-toml, 9}: 10final: prev: { 11 coc-basedpyright = buildVimPlugin { 12 inherit (coc-basedpyright) pname version meta; 13 src = "${coc-basedpyright}/lib/node_modules/coc-basedpyright"; 14 }; 15 16 coc-clangd = buildVimPlugin { 17 inherit (coc-clangd) pname version meta; 18 src = "${coc-clangd}/lib/node_modules/coc-clangd"; 19 }; 20 21 coc-css = buildVimPlugin { 22 inherit (coc-css) pname version meta; 23 src = "${coc-css}/lib/node_modules/coc-css"; 24 }; 25 26 coc-diagnostic = buildVimPlugin { 27 inherit (coc-diagnostic) pname version meta; 28 src = "${coc-diagnostic}/lib/node_modules/coc-diagnostic"; 29 }; 30 31 coc-pyright = buildVimPlugin { 32 pname = "coc-pyright"; 33 inherit (coc-pyright) version meta; 34 src = "${coc-pyright}/lib/node_modules/coc-pyright"; 35 }; 36 37 coc-toml = buildVimPlugin { 38 pname = "coc-toml"; 39 inherit (coc-toml) version meta; 40 src = "${coc-toml}/lib/node_modules/coc-toml"; 41 }; 42}