-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdune-project
39 lines (33 loc) · 1.04 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
(lang dune 2.7)
(cram enable)
(generate_opam_files true)
(name clim)
(version "0.3.0")
(source (github Ninjapouet/clim))
(package
(name clim)
(synopsis "Command Line Interface Maker")
(description "It simplifies the binary command line definition and composition")
(license "Apache 2.0")
(authors "Julien Blond <[email protected]>")
(maintainers "Julien Blond <[email protected]>")
(homepage "https://github.com/Ninjapouet/clim")
(bug_reports "https://github.com/Ninjapouet/clim/issues")
(depends
(cmdliner (>= 1.0.4)))
)
(package
(name clim-ppx)
(synopsis "Derivates cmdliner terms from type definitions")
(description "This PPX gives to your program a nice CLI using simple type annotations")
(license "Apache 2.0")
(authors "Julien Blond <[email protected]>")
(maintainers "Julien Blond <[email protected]>")
(homepage "https://github.com/Ninjapouet/clim")
(bug_reports "https://github.com/Ninjapouet/clim/issues")
(depends
(clim (= 0.3.0))
(ppxlib (>= 0.14.0))
(fmt (>= 0.8.8))
(cmdliner (>= 1.0.4)))
)