this repo has no description
1opam-version: "2.0" 2synopsis: "Browser programming toolkit for OCaml" 3description: """\ 4Brr is a toolkit for programming browsers in OCaml with the 5[`js_of_ocaml`][jsoo] compiler. It provides: 6 7* Interfaces to a selection of browser APIs. 8* An OCaml console developer tool for live interaction 9 with programs running in web pages. 10* A JavaScript FFI for idiomatic OCaml programming. 11 12Brr is distributed under the ISC license. It depends on the 13`js_of_ocaml` compiler and runtime – but not on its libraries or 14syntax extension. 15 16[jsoo]: https://ocsigen.org/js_of_ocaml 17 18Homepage: <https://erratique.ch/software/brr>""" 19maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 20authors: "The brr programmers" 21license: ["ISC" "BSD-3-Clause"] 22tags: ["reactive" "declarative" "frp" "front-end" "browser" "org:erratique"] 23homepage: "https://erratique.ch/software/brr" 24doc: "https://erratique.ch/software/brr/doc/" 25bug-reports: "https://github.com/dbuenzli/brr/issues" 26depends: [ 27 "ocaml" {>= "4.08.0"} 28 "ocamlfind" {build} 29 "ocamlbuild" {build} 30 "topkg" {build & >= "1.0.3"} 31 "js_of_ocaml-compiler" {>= "4.1.0"} 32 "js_of_ocaml-toplevel" {>= "4.1.0"} 33] 34build: ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"] 35dev-repo: "git+https://erratique.ch/repos/brr.git" 36url { 37 src: "https://erratique.ch/software/brr/releases/brr-0.0.6.tbz" 38 checksum: 39 "sha512=21b8a32ca21ab824a65397d94bc6588dc66884e155c0106ebe2329387a511b6e5a6062ffe1bd621557322854c0f33e49763319131eab3451ba36da1b3f065d2b" 40}