(22 lines)
1 package = "immutable-table"2 version = "scm-2"3 source = {4 url = "git+https://spilt@bitbucket.org/spilt/lua-immutable.git"5 }6 description = {7 summary = "This is a native Lua library that allows the creation of immutable tables.",8 detailed = "This is a native Lua library that allows the creation of immutable tables.",9 homepage = "https://spilt@bitbucket.org/spilt/lua-immutable.git",10 license = "MIT"11 }12 dependencies = {13 "lua >= 5.1, < 5.4"14 }15 build = {16 type = "builtin",17 modules = {18 immutable = {19 "limmutable.c"20 }21 }22 }