-
Notifications
You must be signed in to change notification settings - Fork 662
/
Copy pathdune-project
157 lines (134 loc) · 5.64 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
(lang dune 3.8)
(name rocq)
; We use directory targets in documentation
(using directory-targets 0.1)
; We need this for when we use the dune.disabled files instead of our rule_gen
(using coq 0.8)
(formatting
(enabled_for ocaml))
(generate_opam_files true)
(license LGPL-2.1-only)
(maintainers "The Rocq development team <coqdev@inria.fr>")
(authors "The Rocq development team, INRIA, CNRS, and contributors")
; This generates bug-reports and dev-repo
(source (github coq/coq))
(homepage https://coq.inria.fr/)
(documentation "https://coq.github.io/doc/")
(version dev)
; Note that we use coq.opam.template to have dune add the correct opam
; prefix for configure
(package
(name rocq-runtime)
(depends
(ocaml (>= 4.09.0))
(ocamlfind (>= 1.8.1))
(zarith (>= 1.11))
(conf-linux-libc-dev (= :os "linux")))
(depopts rocq-native memprof-limits memtrace)
(synopsis "The Rocq Prover -- Core Binaries and Tools")
(description "The Rocq Prover is an interactive theorem prover, or proof assistant. It provides
a formal language to write mathematical definitions, executable
algorithms and theorems together with an environment for
semi-interactive development of machine-checked proofs.
Typical applications include the certification of properties of
programming languages (e.g. the CompCert compiler certification
project, or the Bedrock verified low-level programming library), the
formalization of mathematics (e.g. the full formalization of the
Feit-Thompson theorem or homotopy type theory) and teaching.
This package includes the Rocq Prover core binaries, plugins, and tools, but
not the vernacular standard library.
Note that in this setup, Rocq needs to be started with the -boot and
-noinit options, as will otherwise fail to find the regular Rocq
prelude, now living in the rocq-core package."))
(package
(name coq-core)
(depends
(rocq-runtime (= :version)))
(synopsis "Compatibility binaries for Coq after the Rocq renaming"))
(package
(name rocq-core)
(depends
(rocq-runtime (= :version)))
(synopsis "The Rocq Prover with its prelude")
(description "The Rocq Prover is an interactive theorem prover, or proof assistant. It provides
a formal language to write mathematical definitions, executable
algorithms and theorems together with an environment for
semi-interactive development of machine-checked proofs.
Typical applications include the certification of properties of
programming languages (e.g. the CompCert compiler certification
project, or the Bedrock verified low-level programming library), the
formalization of mathematics (e.g. the full formalization of the
Feit-Thompson theorem or homotopy type theory) and teaching.
This package includes the Rocq prelude, that is loaded automatically
by Rocq in every .v file, as well as other modules bound to the
Corelib.* and Ltac2.* namespaces."))
(package
(name coqide-server)
(depends
(rocq-runtime (= :version)))
(synopsis "The Rocq Prover, XML protocol server")
(description "The Rocq Prover is an interactive theorem prover, or proof assistant. It provides
a formal language to write mathematical definitions, executable
algorithms and theorems together with an environment for
semi-interactive development of machine-checked proofs.
This package provides the `coqidetop` language server, an
implementation of Rocq's [XML protocol](https://github.com/coq/coq/blob/master/dev/doc/xml-protocol.md)
which allows clients, such as RocqIDE, to interact with the Rocq Prover in a
structured way."))
(package
(name rocqide)
(depends
(ocamlfind :build)
(conf-findutils :build)
conf-adwaita-icon-theme
(coqide-server (= :version))
(cairo2 (>= 0.6.4))
(lablgtk3-sourceview3 (and (>= 3.1.2) (or (>= 3.1.5) (<> :os "windows")))))
(synopsis "The Rocq Prover --- GTK3 IDE")
(description "The Rocq Prover is an interactive theorem prover, or proof assistant. It provides
a formal language to write mathematical definitions, executable
algorithms and theorems together with an environment for
semi-interactive development of machine-checked proofs.
This package provides the RocqIDE, a graphical user interface for the
development of interactive proofs."))
(package
(name coq-doc)
(license "OPUBL-1.0")
(depends
(conf-python-3 :build)
(coq (and :build (= :version))))
(synopsis "The Rocq Prover --- Reference Manual")
(description "The Rocq Prover is an interactive theorem prover, or proof assistant. It provides
a formal language to write mathematical definitions, executable
algorithms and theorems together with an environment for
semi-interactive development of machine-checked proofs.
This package provides the Rocq Reference Manual."))
(package
(name rocq)
(allow_empty)
(depends
(rocq-core (= :version))
rocq-stdlib
(ounit2 :with-test)
(conf-python-3 :with-test)
(conf-time :with-test))
(synopsis "The Rocq Prover with Stdlib")
(description "The Rocq Prover is an interactive theorem prover, or proof assistant. It provides
a formal language to write mathematical definitions, executable
algorithms and theorems together with an environment for
semi-interactive development of machine-checked proofs.
Typical applications include the certification of properties of
programming languages (e.g. the CompCert compiler certification
project, or the Bedrock verified low-level programming library), the
formalization of mathematics (e.g. the full formalization of the
Feit-Thompson theorem or homotopy type theory) and teaching.
This package is a virtual package gathering the rocq-core and rocq-stdlib packages."))
(package
(name coq)
(allow_empty)
(depends
(rocq (= :version))
(coq-core (= :version))
coq-stdlib
(coqide-server (= :version)))
(synopsis "Compatibility metapackage for Coq after the Rocq renaming"))