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

31 lines
748 B
Lua

-- -*- lua -*-
package = "jeejah"
version = "0.3.1-4"
source = {
url = "git+https://gitlab.com/technomancy/jeejah.git",
tag = "0.3.1",
}
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",
license = "MIT/X11",
}
dependencies = {
"lua >= 5.1",
"luasocket = 3.0rc1-2",
"serpent = 0.28-1",
}
build = {
type = "builtin",
modules = { jeejah = "jeejah.lua",
["jeejah.fenneleval"] = "jeejah/fenneleval.lua",
bencode = "bencode.lua",
},
install = { bin = { "bin/jeejah" } },
}