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* Note based reactive support (optional and experimental). 9* An OCaml console developer tool for live interaction 10 with programs running in web pages. 11* A JavaScript FFI for idiomatic OCaml programming. 12 13Brr is distributed under the ISC license. It depends on [Note][note] 14and on the `js_of_ocaml` compiler and runtime – but not on its 15libraries or syntax extension. 16 17[note]: https://erratique.ch/software/note 18[jsoo]: https://ocsigen.org/js_of_ocaml 19 20Homepage: https://erratique.ch/software/brr""" 21maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 22authors: "The brr programmers" 23license: ["ISC" "BSD-3-Clause"] 24tags: ["reactive" "declarative" "frp" "front-end" "browser" "org:erratique"] 25homepage: "https://erratique.ch/software/brr" 26doc: "https://erratique.ch/software/brr/doc/" 27bug-reports: "https://github.com/dbuenzli/brr/issues" 28depends: [ 29 "ocaml" {>= "4.08.0"} 30 "ocamlfind" {build} 31 "ocamlbuild" {build} 32 "js_of_ocaml-compiler" {>= "4.1.0"} 33 "js_of_ocaml-toplevel" {>= "4.1.0"} 34 "note" 35] 36build: ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"] 37dev-repo: "git+https://erratique.ch/repos/brr.git" 38url { 39 src: "https://erratique.ch/software/brr/releases/brr-0.0.5.tbz" 40 checksum: 41 "sha512=5f91f33e8d41e47617bb31295458a8b69b520a40ea24f5ceab28f4c9e8ca85c5535e7ec8820929fd0dbbbd00f5bdc55a49d8533880721d066f15b025e204775f" 42}