-
Notifications
You must be signed in to change notification settings - Fork 428
/
dune-project
65 lines (52 loc) · 1.18 KB
/
dune-project
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
(lang dune 2.9)
(name reason)
(using menhir 2.0)
(cram enable)
(version 3.13.0)
(generate_opam_files true)
(source
(github reasonml/reason))
(authors "Jordan Walke <[email protected]>")
(maintainers
"Jordan Walke <[email protected]>"
"Antonio Nuno Monteiro <[email protected]>")
(homepage "https://reasonml.github.io/")
(bug_reports "https://github.com/reasonml/reason/issues")
(license "MIT")
(package
(name reason)
(synopsis "Reason: Syntax & Toolchain for OCaml")
(description
"Reason gives OCaml a new syntax that is remniscient of languages like\nJavaScript. It's also the umbrella project for a set of tools for the OCaml &\nJavaScript ecosystem.")
(depends
(ocaml
(and
(>= "4.06")
(< "5.4")))
(ocamlfind :build)
(dune-build-info
(>= 2.9.3))
(menhir
(>= "20180523"))
(merlin-extend
(>= "0.6.2"))
fix
ppx_derivers
cppo
(ppxlib
(>= "0.28.0"))))
(package
(name rtop)
(synopsis "Reason toplevel")
(description
"rtop is the toplevel (or REPL) for Reason, based on utop (https://github.com/ocaml-community/utop).")
(depends
(ocaml
(and
(>= "4.06")
(< "5.4")))
(reason
(= :version))
(utop
(>= "2.0"))
cppo))