blob: c2c5fad6cdceba1f1451469ab02a50acfb74ef8c (
plain)
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
|
(lang dune 2.7)
(generate_opam_files true)
(authors "Sébastien Dailly")
(maintainers "Sébastien Dailly")
(package
(name sript.it)
(synopsis "Calligraphy app")
(depends
(ocaml (>= 4.10.0))
(brr (>= 0.0.1))
(gg (>= 0.9.3))
)
)
(package
(name editor)
(synopsis "Text editor")
(depends
(ocaml (>= 4.10.0))
(brr (>= 0.0.1))
)
)
(package
(name css)
(synopsis "CSS Merger")
(depends
(ocaml (>= 4.10.0))
(brr (>= 0.0.1))
(css-parser (>= 0.2.4))
)
)
(package
(name viz.js)
(synopsis "Graph viewer")
(depends
(ocaml (>= 4.10.0))
(js_of_ocaml-lwt (>= 3.8.0))
)
)
(using menhir 2.1)
|