chore(*) luarocks only support git+ssh protocol

This commit is contained in:
Alan Boudreault
2021-11-02 10:58:07 -04:00
committed by Enrique García Cota
parent 07a01090e7
commit ee3285e2fd

24
sandbox-1.0.1-2.rockspec Normal file
View File

@@ -0,0 +1,24 @@
package = "sandbox"
version = "1.0.1-2"
source = {
url = "git+ssh://git@github.com/kikito/sandbox.lua.git",
tag = "v1.0.1"
}
description = {
summary = "A pure-lua solution for running untrusted Lua code.",
homepage = "https://github.com/kikito/sandbox.lua",
}
dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
["sandbox"] = "sandbox.lua",
}
}