summaryrefslogtreecommitdiff
path: root/meta.lua
diff options
context:
space:
mode:
Diffstat (limited to 'meta.lua')
-rw-r--r--meta.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/meta.lua b/meta.lua
index dd1abb3..22c18ef 100644
--- a/meta.lua
+++ b/meta.lua
@@ -21,14 +21,13 @@ for image, arch, version, link in cartesian(sources, lua_versions) do
21 image = "image-" .. image, 21 image = "image-" .. image,
22 requires = { 22 requires = {
23 {"http", link} 23 {"http", link}
24
25 }, 24 },
26 produces = {}, 25 produces = {},
27 export = true, 26 export = true,
28 env = { 27 env = {
29 maj = version:match("(%d)%d"), 28 maj = version:match("(%d)%d"),
30 min = version:match("%d(%d)"), 29 min = version:match("%d(%d)"),
31 arch = arch 30 arch = arch,
32 } 31 }
33 } 32 }
34end 33end