this repo has no description
1opam-version: "2.0" 2maintainer: "dev@clarus.me" 3homepage: "https://github.com/formal-land/coq-of-ocaml" 4dev-repo: "git+https://github.com/formal-land/coq-of-ocaml.git" 5bug-reports: "https://github.com/formal-land/coq-of-ocaml/issues" 6authors: ["Guillaume Claret"] 7license: "MIT" 8build: [ 9 ["sh" "-c" "cd proofs && ./configure.sh"] {coq:installed} 10 [make "-C" "proofs" "-j%{jobs}%"] {coq:installed} 11 ["dune" "build" "-p" name "-j" jobs] 12] 13install: [ 14 [make "-C" "proofs" "install"] {coq:installed} 15] 16depends: [ 17 "csexp" {< "1.5"} 18 "dune" {>= "2.8"} 19 "ocaml" {>= "4.10" & < "4.11"} 20 "ocamlfind" {>= "1.5.2"} 21 "smart-print" 22 "yojson" {>= "1.6.0"} 23] 24depopts: [ 25 "coq" 26] 27conflicts: [ 28 "coq" {< "8.11"} 29] 30tags: [ 31 "keyword:compilation" 32 "keyword:OCaml" 33 "logpath:CoqOfOCaml" 34] 35synopsis: "Compile a subset of OCaml to Coq" 36 37url { 38 src: "https://github.com/formal-land/coq-of-ocaml/archive/2.4.1.tar.gz" 39 checksum: [ 40 "sha256=5856656d5542475e7eaf9e82a8348d85754f5c1ef1c56240ca97234793fb68ff" 41 "sha512=44530bce7d40c8a27459db17c504b2a14d9c37fdbb0658df70bcf376df4309bd88222b89a069d8534c09eb40f1394dabda2bade9e44a9fde5a49b01fc9325d35" 42 ] 43}