diff options
Diffstat (limited to 'nvim-lspconfig-scm-1.rockspec')
| -rw-r--r-- | nvim-lspconfig-scm-1.rockspec | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/nvim-lspconfig-scm-1.rockspec b/nvim-lspconfig-scm-1.rockspec new file mode 100644 index 00000000..ec91d030 --- /dev/null +++ b/nvim-lspconfig-scm-1.rockspec @@ -0,0 +1,38 @@ +local _MODREV, _SPECREV = 'scm', '-1' + +rockspec_format = "3.0" +package = 'nvim-lspconfig' +version = _MODREV .. _SPECREV + +description = { + summary = "A collection of common configurations for Neovim's built-in language server client.", + detailed = [[ + This plugin allows for declaratively configuring, launching, and initializing language servers you have installed on your system. + Language server configurations are community-maintained. + ]], + homepage = 'https://github.com/neovim/nvim-lspconfig', + license = 'Apache/2.0', + labels = { 'neovim', 'lsp' } +} + +dependencies = { + 'lua == 5.1', +} + +source = { + url = 'https://github.com/neovim/nvim-lspconfig/archive/v' .. _MODREV .. '.zip', + dir = 'nvim-lspconfig-' .. _MODREV, +} + +if _MODREV == 'scm' then + source = { + url = 'git://github.com/neovim/nvim-lspconfig', + } +end + +build = { + type = 'builtin', + copy_directories = { + 'doc' + } +} |
