mirror of
https://github.com/zoriya/lz.n.git
synced 2025-12-06 06:36:11 +00:00
24 lines
396 B
Lua
24 lines
396 B
Lua
-- NOTE: This rockspec is used for running busted tests only,
|
|
-- not for publishing to LuaRocks.org
|
|
|
|
local _MODREV, _SPECREV = 'scm', '-1'
|
|
rockspec_format = '3.0'
|
|
package = 'lz.n'
|
|
version = _MODREV .. _SPECREV
|
|
|
|
dependencies = {
|
|
'lua >= 5.1',
|
|
}
|
|
|
|
test_dependencies = {
|
|
'lua >= 5.1',
|
|
}
|
|
|
|
source = {
|
|
url = 'git://github.com/nvim-neorocks/' .. package,
|
|
}
|
|
|
|
build = {
|
|
type = 'builtin',
|
|
}
|