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: "IDE of the Coq formal proof management system" 9description: """ 10CoqIDE is a graphical user interface for interactive development 11of mathematical definitions, executable algorithms, and proofs of theorems 12using the Coq proof assistant. 13""" 14 15depends: [ 16 "coq" {= version} 17 "ocamlfind" {build} 18 "conf-findutils" {build} 19 "lablgtk3-sourceview3" 20 "conf-adwaita-icon-theme" 21] 22build: [ 23 [ 24 "./configure" 25 "-configdir" "%{lib}%/coq/config" 26 "-prefix" prefix 27 "-mandir" man 28 "-docdir" doc 29 "-libdir" "%{lib}%/coq" 30 "-datadir" "%{share}%/coq" 31 "-native-compiler" {os = "macos"} "no" {os = "macos"} 32 ] 33 [make "COQ_USE_DUNE=" "-j%{jobs}%" "coqide-files"] 34 [make "COQ_USE_DUNE=" "-j%{jobs}%" "coqide-opt"] 35] 36install: [ 37 make "COQ_USE_DUNE=" 38 "install-ide-bin" 39 "install-ide-files" 40 "install-ide-info" 41 "install-ide-devfiles" 42] 43 44url { 45 src: "https://github.com/coq/coq/releases/download/V8.12.1/coq-8.12.1.tar.gz" 46 checksum: "sha512=39452c86a35403b4ca7427c1973b93bc4d1e0052f12a53608ca94bbd2a4f902b9fc0f58b550b7eba03c2d346e06989104e92eee0d842ec267ce69200b8aa37a6" 47} 48extra-source "coqide.install" { 49 src: 50 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/coqide/coqide.install.8.12.1" 51 checksum: 52 "sha512=0c59f0c3cf3453e92c02b29aceb31090020410d2b0dd2856172cd19b1b2b58b2a1d46047fb08a9c1d4767d87934c73ae6adfcb4204b1ea6a55a85ba75b2b812d" 53}