this repo has no description
1opam-version: "2.0" 2synopsis: "The Rocq Prover, XML protocol server" 3description: """ 4The Rocq Prover is an interactive theorem prover, or proof assistant. 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 Rocq's [XML protocol](https://github.com/coq/coq/blob/master/dev/doc/xml-protocol.md) 11which allows clients, such as RocqIDE, to interact with the Rocq Prover in a 12structured way.""" 13maintainer: ["The Rocq development team <coqdev@inria.fr>"] 14authors: ["The Rocq 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" {>= "3.8"} 21 "rocq-runtime" {= 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 "@install" 34 "@runtest" {with-test} 35 "@doc" {with-doc} 36 ] 37] 38dev-repo: "git+https://github.com/coq/coq.git" 39 40url { 41 src: 42 "https://github.com/coq/coq/releases/download/V9.0.0/rocq-9.0.0.tar.gz" 43 checksum: [ 44 "md5=8d522602d23e7a665631826dab9aa92b" 45 "sha512=f4f76a6a178e421c99ee7a331a2fd97a06e9c5d0168d7e60c44e3820d8e1a124370ea104ad90c7f87a9a1e9d87b2d0d7d2d387c998feeaed4a75ed04e176a4be" 46 ] 47}