git.m455.casa

fa

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


esperbuild/espersrc/fennel-0.7.0/rockspecs/fennel-scm-1.rockspec

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