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 "dune" {>= "2.0" & < "2.8"} 18 "ocaml" {>= "4.10" & < "4.11"} 19 "ocamlfind" {>= "1.5.2"} 20 "smart-print" 21 "yojson" {>= "1.6.0"} 22] 23depopts: [ 24 "coq" 25] 26conflicts: [ 27 "coq" {< "8.11"} 28] 29tags: [ 30 "keyword:compilation" 31 "keyword:OCaml" 32 "logpath:CoqOfOCaml" 33] 34synopsis: "Compile a subset of OCaml to Coq" 35 36url { 37 src: "https://github.com/formal-land/coq-of-ocaml/archive/2.4.0.tar.gz" 38 checksum: [ 39 "sha256=c7996fa56404815f4b87395c910a1cfb4a60ad05fd03ea26604e5ef1f4d345bc" 40 "sha512=a92cb1c0c505dcfd58084e4000d90e9816ea3abfd9f9778662306fb7818af3bbfca757822acda4e4ba907b24c81ab703db3b324373c13fa9209f491a3ef4ca8d" 41 ] 42}