-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfx-scm-0.rockspec
35 lines (34 loc) · 966 Bytes
/
fx-scm-0.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package="fx"
version="scm-0"
source = {
url = "git://github.com/siffiejoe/lua-fx.git",
}
description = {
summary = "Functional Extensions (FX) for Lua",
detailed = [[
A small collection of essential tools for functional
programming in Lua.
]],
homepage = "https://github.com/siffiejoe/lua-fx/",
license = "MIT"
}
dependencies = {
"lua >= 5.1, < 5.4"
}
build = {
type = "builtin",
modules = {
["fx"] = "fx.c",
--[[
["fx.functors"] = "fx/functors.lua",
["fx.functors.const"] = "fx/functors/const.lua",
["fx.functors.either"] = "fx/functors/either.lua",
["fx.functors.endo"] = "fx/functors/endo.lua",
["fx.functors.first"] = "fx/functors/first.lua",
["fx.functors.identity"] = "fx/functors/identity.lua",
["fx.functors.list"] = "fx/functors/list.lua",
["fx.functors.maybe"] = "fx/functors/maybe.lua",
["fx.lenses"] = "fx/lenses.lua",
--]]
}
}