this repo has no description
1opam-version: "2.0" 2maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 3homepage: "http://erratique.ch/software/react" 4authors: ["Daniel Bünzli <daniel.buenzli i@erratique.ch>"] 5doc: "http://erratique.ch/software/react/doc/React" 6tags: [ "reactive" "declarative" "signal" "event" "frp" ] 7license: "BSD-3-Clause" 8depends: [ 9 "ocaml" {>= "3.11.0"} 10 "ocamlfind" 11 "ocamlbuild" {build} 12] 13build: 14[ 15 ["./pkg/pkg-git" ] 16 ["./pkg/build" "true" ] 17] 18synopsis: "Declarative events and signals for OCaml" 19description: """ 20React is an OCaml module for functional reactive programming (FRP). It 21provides support to program with time varying values : declarative 22events and signals. React doesn't define any primitive event or 23signal, it lets the client chooses the concrete timeline. 24 25React is made of a single, independent, module and distributed under 26the BSD3 license.""" 27url { 28 src: "http://erratique.ch/software/react/releases/react-1.0.0.tbz" 29 checksum: [ 30 "sha256=dd7dd227930fa8a57514e570d182dca31ad71bf210a3e5247c9721330f22e10b" 31 "md5=28dffef441f84d626829a812c675bc6d" 32 ] 33}