git.m455.casa

fa

clone url: git://git.m455.casa/fa


esperbuild/espersrc/fennel-0.7.0/rockspecs/fennel-0.1.1-2.rockspec

1 package = "fennel"
2 version = "0.1.1-2"
3 source = {
4 url = "git://github.com/bakpakin/Fennel",
5 tag = "0.1.1"
6 }
7 description = {
8 summary = "Lisp that compiles to Lua",
9 detailed = [[
10 A lisp-like language that compiles to efficient Lua. Combine
11 meta-programming with Lua.]],
12 homepage = "https://fennel-lang.org/",
13 license = "MIT"
14 }
15 dependencies = {
16 "lua >= 5.1"
17 }
18 build = {
19 type = "builtin",
20 modules = {
21 fennel = "fennel.lua",
22 fennelview = "fennelview.fnl.lua"
23 },
24 install = {
25 bin = {
26 "fennel"
27 }
28 }
29 }