this repo has no description
1opam-version: "2.0" 2maintainer: "dev@ocsigen.org" 3authors: "Ocsigen team" 4bug-reports: "https://github.com/ocsigen/js_of_ocaml/issues" 5homepage: "http://ocsigen.org/js_of_ocaml" 6dev-repo: "git+https://github.com/ocsigen/js_of_ocaml.git" 7synopsis: "Compiler from OCaml bytecode to Javascript" 8description: """ 9Js_of_ocaml is a compiler from OCaml bytecode to JavaScript. 10It makes it possible to run pure OCaml programs in JavaScript 11environment like browsers and Node.js 12""" 13 14build: [["dune" "build" "-p" name "-j" jobs]] 15 16depends: [ 17 "ocaml" {>= "4.02.0" & < "4.09.0"} 18 "dune" {>= "1.2"} 19 "ppx_expect" {with-test & >= "0.12.0"} 20 "cmdliner" 21 "cppo" {>= "1.1.0"} 22 "ocamlfind" 23 "yojson" 24] 25conflicts: [ 26 "ocamlfind" {< "1.5.1"} 27 "js_of_ocaml" {< "3.0"} 28 "base-domains" 29] 30 31url { 32 src: "https://github.com/ocsigen/js_of_ocaml/archive/3.4.0.tar.gz" 33 checksum: [ 34 "sha256=c4fad35dc113d5d710d93fdc81b798d98bc33e675b758587279cd65160178db0" 35 "md5=42f914d0410787d65668d2822fdab1a1" 36 ] 37}