-
Notifications
You must be signed in to change notification settings - Fork 0
/
programs.cfg
49 lines (49 loc) · 1.69 KB
/
programs.cfg
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
["selene"] = {
files = {
["master/selene/lib/selene/init.lua"] = "/lib/selene",
["master/selene/lib/selene/parser.lua"] = "/lib/selene",
},
name = "Selene",
description = "A Lua library for more convenient functional programming",
authors = "Vexatos",
note = "This changes some base stuff in Lua. Use only if you know what you are doing.",
repo = "tree/master/selene/lib",
version = "0.1.0.7",
hidden = true,
},
["selene-openos"] = {
files = {
["master/selene/wrappers/OpenOS/bin/selenec.lua"] = "/bin",
["master/selene/wrappers/OpenOS/bin/selene.lua"] = "/bin",
["master/selene/wrappers/etc/selene.cfg"] = "//etc",
["master/selene/wrappers/OpenOS/boot/44_selene.lua"] = "//boot",
},
dependencies = {
["selene"] = "//usr"
},
name = "Selene for OpenOS",
description = "OpenOS wrapper for Selene, providing boot, compiler, interpreter and config",
authors = "Vexatos",
note = "Config is placed in /etc. See package 'selene' for more information.",
repo = "tree/master/selene/wrappers/OpenOS",
version = "0.1.0.4",
hidden = true,
},
["selene-plan9k"] = {
files = {
["master/selene/wrappers/Plan9k/lib/modules/base/17_selene.lua"]="//lib/modules/base",
["master/selene/wrappers/etc/selene.cfg"] = "//etc",
},
dependencies = {
["selene"] = "//usr"
},
name = "Selene",
description = "Plan9k wrapper for Selene, providing boot and config",
authors = "Vexatos",
note = "Config is placed in /etc. See package 'selene' for more information.",
repo = "tree/master/selene/wrappers/Plan9k",
version = "0.1.0.3",
hidden = true,
}
}