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 "ocaml-migrate-parsetree" {< "2.0.0"} 20 "ppx_tools_versioned" 21 "js_of_ocaml" {= version} 22] 23conflicts: [ 24 "ppx_tools_versioned" {<="5.0beta0"} 25] 26 27url { 28 src: "https://github.com/ocsigen/js_of_ocaml/archive/3.4.0.tar.gz" 29 checksum: [ 30 "sha256=c4fad35dc113d5d710d93fdc81b798d98bc33e675b758587279cd65160178db0" 31 "md5=42f914d0410787d65668d2822fdab1a1" 32 ] 33}