bomberpac/vendor/jeejah/rockspecs/jeejah-0.1.0-1.rockspec
2021-02-07 16:56:19 -05:00

29 lines
665 B
Lua

-- -*- lua -*-
package = "jeejah"
version = "0.1.0-1"
source = {
url = "https://gitlab.com/technomancy/jeejah.git",
tag = "0.1.0",
}
description = {
summary = "An nREPL server",
detailed = [[
Implements a server that speaks the nREPL protocol and allows
clients to connect and evaluate code over a network connection.
]],
homepage = "https://gitlab.com/technomancy/jeejah.git",
license = "MIT/X11",
}
dependencies = {
"lua ~> 5.1",
"luasocket = 3.0rc1-2",
"serpent = 0.28-1",
"bencode = 2.2.0-1",
}
build = {
type = "builtin",
modules = { jeejah = "jeejah.lua", },
install = { bin = { "bin/jeejah" } },
}