this repo has no description
1opam-version: "2.0"
2synopsis: "The Coq Proof Assistant, XML protocol server"
3description: """
4Coq is a formal proof management system. It provides
5a formal language to write mathematical definitions, executable
6algorithms and theorems together with an environment for
7semi-interactive development of machine-checked proofs.
8
9This package provides the `coqidetop` language server, an
10implementation of Coq's [XML protocol](https://github.com/coq/coq/blob/master/dev/doc/xml-protocol.md)
11which allows clients, such as CoqIDE, to interact with Coq in a
12structured way."""
13maintainer: ["The Coq development team <coqdev@inria.fr>"]
14authors: ["The Coq development team, INRIA, CNRS, and contributors"]
15license: "LGPL-2.1-only"
16homepage: "https://coq.inria.fr/"
17doc: "https://coq.github.io/doc/"
18bug-reports: "https://github.com/coq/coq/issues"
19depends: [
20 "dune" {>= "2.9"}
21 "coq-core" {= version}
22 "odoc" {with-doc}
23]
24build: [
25 ["dune" "subst"] {dev}
26 [
27 "dune"
28 "build"
29 "-p"
30 name
31 "-j"
32 jobs
33 "--promote-install-files=false"
34 "@install"
35 "@runtest" {with-test}
36 "@doc" {with-doc}
37 ]
38 ["dune" "install" "-p" name "--create-install-files" name]
39]
40dev-repo: "git+https://github.com/coq/coq.git"
41
42url {
43 src: "https://github.com/coq/coq/releases/download/V8.19.1/coq-8.19.1.tar.gz"
44 checksum: [
45 "md5=13d2793fc6413aac5168822313e4864e"
46 "sha512=ec8379df34ba6e72bcf0218c66fef248b0e4c5c436fb3f2d7dd83a2c5f349dd0874a67484fcf9c0df3e5d5937d7ae2b2a79274725595b4b0065a381f70769b42"
47 ]
48}