-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-project
57 lines (47 loc) · 1.88 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
(lang dune 3.8)
(name coq-stdlib)
; We use directory targets in documentation
(using directory-targets 0.1)
; We need this due to `(coq.pp )` declarations
(using coq 0.8)
(formatting
(enabled_for ocaml))
(generate_opam_files true)
(license LGPL-2.1-only)
(maintainers "The Coq standard library development team")
(authors "The Coq 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)
(package
(name coq-stdlib)
(depends
coq-core
(rocq-init (= :version)))
(depopts coq-native)
(synopsis "The Coq Proof Assistant -- Standard Library")
(description "Coq is a formal proof management system. 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 Coq Standard Library, that is to say, the
set of modules usually bound to the Stdlib.* namespace."))
(package
(name coq-stdlib-doc)
(license "OPUBL-1.0")
(depends
(conf-python-3 :build)
(coq (and :build (= :version))))
(synopsis "The Coq Proof Assistant Standard Library --- Reference Manual")
(description "Coq is a formal proof management system. 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 Reference Manual for the Standard Library."))