summaryrefslogtreecommitdiff
path: root/telescope.nvim-scm-1.rockspec
blob: f717d640351b65b5465aff7e5f4816499333c5c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
local MODREV, SPECREV = 'scm', '-1'
rockspec_format = '3.0'
package = 'telescope.nvim'
version = MODREV .. SPECREV

description = {
  summary = 'Find, Filter, Preview, Pick. All lua, all the time.',
  detailed = [[
  A highly extendable fuzzy finder over lists. 
  Built on the latest awesome features from neovim core. 
  Telescope is centered around modularity, allowing for easy customization.
  ]],
  labels = { 'neovim', 'plugin', },
  homepage = 'https://github.com/nvim-telescope/telescope.nvim',
  license = 'MIT',
}

dependencies = {
  'lua == 5.1',
  'plenary.nvim',
}

source = {
  url = 'https://github.com/nvim-telescope/telescope.nvim/archive/refs/tags/' .. MODREV .. '.zip',
  dir = 'telescope.nvim-' .. MODREV
}

if MODREV == 'scm' then
  source = {
    url = 'git://github.com/nvim-telescope/telescope.nvim',
  }
end

build = {
  type = 'builtin',
  copy_directories = {
    'doc',
    'ftplugin',
    'plugin',
    'scripts',
    'autoload',
    'data',
  }
}