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.github.io/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.10"} 18 "dune" {>= "1.11.1"} 19 "ppx_expect" {with-test & >= "0.12.0"} 20 "cmdliner" 21 "ocaml-migrate-parsetree" {< "2.0.0"} 22 "yojson" # It's optional, but we want users to be able to use source-map without pain. 23] 24 25depopts: [ "ocamlfind" ] 26 27conflicts: [ 28 "ocamlfind" {< "1.5.1"} 29 "js_of_ocaml" {< "3.0"} 30 "base-domains" 31] 32url { 33 src: 34 "https://github.com/ocsigen/js_of_ocaml/releases/download/3.5.0/js_of_ocaml-3.5.0.tbz" 35 checksum: [ 36 "sha256=c19903c11a7e7657a4bb92de9ad910e6daf5afc9da7222dcd8fe8da8867f05b7" 37 "sha512=3aa852552abe268504f7e26841bd1c43e95dba0a5827f70b97230e900909c3fa94f59715b45ce658f0c2e298a0e89c882a994d5fcc6bcf75250cf0b94733fa88" 38 ] 39}