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] 23build: [ 24 [ 25 "dune" 26 "build" 27 "-p" 28 name 29 "-j" 30 jobs 31 "@install" 32 "@doc" {with-doc} 33 ] 34] 35dev-repo: "git+https://github.com/coq/coq.git" 36 37url { 38 src: "https://github.com/coq/coq/releases/download/V8.17.0/coq-8.17.0.tar.gz" 39 checksum: "sha512=2f77bcb5211018b5d46320fd39fd34450eeb654aca44551b28bb50a2364398c4b34587630b6558db867ecfb63b246fd3e29dc2375f99967ff62bc002db9c3250" 40}