this repo has no description
1opam-version: "2.0" 2maintainer: "coqdev@inria.fr" 3authors: "The Coq development team, INRIA, CNRS, and contributors." 4homepage: "https://coq.inria.fr/" 5bug-reports: "https://github.com/coq/coq/issues" 6dev-repo: "git+https://github.com/coq/coq.git" 7license: "LGPL-2.1-only" 8synopsis: "Formal proof management system" 9description: """ 10The Coq proof assistant provides a formal language to write 11mathematical definitions, executable algorithms, and theorems, together 12with an environment for semi-interactive development of machine-checked 13proofs. Typical applications include the certification of properties of programming 14languages (e.g., the CompCert compiler certification project and the 15Bedrock verified low-level programming library), the formalization of 16mathematics (e.g., the full formalization of the Feit-Thompson theorem 17and homotopy type theory) and teaching. 18""" 19 20depopts: [ 21 "coq-native" 22] 23depends: [ 24 "ocaml" {>= "4.05.0"} 25 "ocamlfind" {build} 26 "num" 27 "conf-findutils" {build} 28 "zarith" {>= "1.10"} 29] 30conflicts: [ 31 "base-nnp" 32 "ocaml-option-nnpchecker" 33] 34build: [ 35 [ 36 "./configure" 37 "-configdir" "%{lib}%/coq/config" 38 "-prefix" prefix 39 "-mandir" man 40 "-docdir" doc 41 "-libdir" "%{lib}%/coq" 42 "-datadir" "%{share}%/coq" 43 "-coqide" "no" 44 "-native-compiler" "yes" {coq-native:installed} "no" {!coq-native:installed} 45 ] 46 [make "COQ_USE_DUNE=" "-j%{jobs}%"] 47 [make "COQ_USE_DUNE=" "-j%{jobs}%" "byte"] 48] 49install: [ 50 [make "COQ_USE_DUNE=" "install"] 51 [make "COQ_USE_DUNE=" "install-byte"] 52] 53 54patches: [ "disable_warn_70.patch" ] 55 56url { 57 src: "https://github.com/coq/coq/releases/download/V8.13.2/coq-8.13.2.tar.gz" 58 checksum: "sha256=1e7793d8483f1e939f62df6749f843df967a15d843a4a5acb024904b76e25a14" 59} 60extra-source "disable_warn_70.patch" { 61 src: 62 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/coq/disable_warn_70.patch.8.13.2" 63 checksum: 64 "sha512=f4bcf3d4b7700c021d05da978995fdaea63571db76d0d2caeb1a0093d0c2898a278770e40c7621114a215d293434c7b173801167b81c362d3797bca382c38d41" 65} 66extra-source "coq.install" { 67 src: 68 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/coq/coq.install.8.13.2" 69 checksum: 70 "sha512=b501737b4dbd22adc1c0377d744448056fb1dc493caf72c05f57c8463cf23f758373605ab3a50b9f505e4c856c41039d0bd7f81f96ed62adc6a674179523e7d2" 71}