this repo has no description
1opam-version: "2.0" 2synopsis: "The Coq Proof Assistant --- GTK3 IDE" 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 CoqIDE, a graphical user interface for the 10development of interactive proofs.""" 11maintainer: ["The Coq development team <coqdev@inria.fr>"] 12authors: ["The Coq development team, INRIA, CNRS, and contributors"] 13license: "LGPL-2.1-only" 14homepage: "https://coq.inria.fr/" 15doc: "https://coq.github.io/doc/" 16bug-reports: "https://github.com/coq/coq/issues" 17depends: [ 18 "dune" {>= "2.9"} 19 "ocamlfind" {build} 20 "conf-findutils" {build} 21 "conf-adwaita-icon-theme" 22 "coqide-server" {= version} 23 "cairo2" {>= "0.6.4"} 24 "lablgtk3-sourceview3" {>= "3.1.2" & (< "3.1.5" | os != "windows")} 25 "odoc" {with-doc} 26] 27build: [ 28 ["dune" "subst"] {dev} 29 [ 30 "dune" 31 "build" 32 "-p" 33 name 34 "-j" 35 jobs 36 "--promote-install-files=false" 37 "@install" 38 "@runtest" {with-test} 39 "@doc" {with-doc} 40 ] 41 ["dune" "install" "-p" name "--create-install-files" name] 42] 43dev-repo: "git+https://github.com/coq/coq.git" 44 45url { 46 src: "https://github.com/coq/coq/releases/download/V8.19.2/coq-8.19.2.tar.gz" 47 checksum: [ 48 "md5=5d1187d5e44ed0163f76fb12dabf012e" 49 "sha512=91bc81530fa4f6498961583ad51eac5001f139881788b88e360a866ad8e2a6e2c5bce86d1a580ab4cd4782bf49d48318767df82471ce33ba3ac143e5569ad33c" 50 ] 51}