-
Notifications
You must be signed in to change notification settings - Fork 33
/
dune-project
75 lines (64 loc) · 1.74 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
66
67
68
69
70
71
72
73
74
75
(lang dune 3.14)
(version dev)
; Since we want to generate opam files we need to provide informations ;
(generate_opam_files true)
; For plugins and preludes
(using dune_site 0.1)
(name alt-ergo)
(authors "Alt-Ergo developers <[email protected]>")
(maintainers "Alt-Ergo developers <[email protected]>")
(source (github OCamlPro/alt-ergo))
; Not specifying bug_reports since it defaults to the github issue page
(homepage "https://alt-ergo.ocamlpro.com/")
(documentation "https://ocamlpro.github.io/alt-ergo")
(using menhir 2.0)
(package
(name alt-ergo)
(synopsis "The Alt-Ergo SMT prover")
(description "\
Alt-Ergo is an automatic theorem prover of mathematical formulas. It was developed at LRI, and is now maintained at OCamlPro.
See more details on https://alt-ergo.ocamlpro.com/")
(depends
(ocaml (>= 4.08.1))
dune
(alt-ergo-lib (= :version))
menhir
dune-site
(cmdliner (>= 1.1.0))
(odoc :with-doc)
)
(sites (share preludes) (lib plugins))
)
(package
(name alt-ergo-lib)
(synopsis "The Alt-Ergo SMT prover library")
(description "\
This is the core library used in the Alt-Ergo SMT solver.
Alt-Ergo is an automatic theorem prover of mathematical formulas. It was developed at LRI, and is now maintained at OCamlPro.
See more details on http://alt-ergo.ocamlpro.com/"
)
(license "LicenseRef-OcamlPro-Non-Commercial")
(depends
(ocaml (>= 4.08.1))
dune
dune-build-info
(dolmen (>= 0.10))
(dolmen_type (>= 0.10))
(dolmen_loop (>= 0.10))
(ocplib-simplex (>= 0.5.1))
(zarith (>= 1.11))
seq
(fmt (>= 0.9.0))
stdlib-shims
(ppx_blob (>= 0.7.2))
ppx_deriving
(camlzip (>= 1.07))
(odoc :with-doc)
ppx_deriving
(qcheck (and :with-test (= 0.22)))
)
(conflicts
(ppxlib (< 0.30.0))
(result (< 1.5))
)
)