this repo has no description
1opam-version: "2.0" 2synopsis: "The Coq Proof Assistant" 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 9Typical applications include the certification of properties of 10programming languages (e.g. the CompCert compiler certification 11project, or the Bedrock verified low-level programming library), the 12formalization of mathematics (e.g. the full formalization of the 13Feit-Thompson theorem or homotopy type theory) and teaching.""" 14maintainer: ["The Coq development team <coqdev@inria.fr>"] 15authors: ["The Coq development team, INRIA, CNRS, and contributors"] 16license: "LGPL-2.1-only" 17homepage: "https://coq.inria.fr/" 18doc: "https://coq.github.io/doc/" 19bug-reports: "https://github.com/coq/coq/issues" 20depends: [ 21 "dune" {>= "2.9"} 22 "coq-core" {= version} 23 "coq-stdlib" {= version} 24 "coqide-server" {= version} 25 "odoc" {with-doc} 26] 27dev-repo: "git+https://github.com/coq/coq.git" 28build: [ 29 ["dune" "subst"] {dev} 30 [ 31 "dune" 32 "build" 33 "-p" 34 name 35 "-j" 36 jobs 37 "--promote-install-files=false" 38 "@install" 39 "@doc" {with-doc} 40 ] 41 ["dune" "install" "-p" name "--create-install-files" name] 42] 43 44url { 45 src: "https://github.com/coq/coq/releases/download/V8.19.1/coq-8.19.1.tar.gz" 46 checksum: [ 47 "md5=13d2793fc6413aac5168822313e4864e" 48 "sha512=ec8379df34ba6e72bcf0218c66fef248b0e4c5c436fb3f2d7dd83a2c5f349dd0874a67484fcf9c0df3e5d5937d7ae2b2a79274725595b4b0065a381f70769b42" 49 ] 50}