-
-
Notifications
You must be signed in to change notification settings - Fork 215
/
neorg-scm-1.rockspec
48 lines (42 loc) · 1.09 KB
/
neorg-scm-1.rockspec
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
45
46
47
48
local MODREV, SPECREV = "scm", "-1"
rockspec_format = "3.0"
package = "neorg"
version = MODREV .. SPECREV
description = {
summary = "Modernity meets insane extensibility. The future of organizing your life in Neovim.",
labels = { "neovim" },
homepage = "https://github.com/nvim-neorg/neorg",
license = "GPL-3.0",
}
dependencies = {
"lua == 5.1",
"nvim-nio ~> 1.7",
"lua-utils.nvim == 1.0.2",
"plenary.nvim == 0.1.4",
"nui.nvim == 0.3.0",
"pathlib.nvim ~> 2.2",
-- "norgopolis-client.lua >= 0.2.0",
-- "norgopolis-server.lua >= 1.3.1",
-- "tree-sitter-norg == 0.2.4",
-- "tree-sitter-norg-meta == 0.1.0",
}
source = {
url = "http://github.com/nvim-neorg/neorg/archive/v" .. MODREV .. ".zip",
}
if MODREV == "scm" then
source = {
url = "git://github.com/nvim-neorg/neorg",
}
end
test_dependencies = {
"nlua",
-- Placed here as we plan on removing nvim-treesitter as a dependency soon, but it's still required for various tests.
"nvim-treesitter == 0.9.2",
}
build = {
type = "builtin",
copy_directories = {
"queries",
"doc",
}
}