this repo has no description
1opam-version: "2.0" 2synopsis: "Declarative events and signals for OCaml" 3description: """\ 4Release %%VERSION%% 5 6React is an OCaml module for functional reactive programming (FRP). It 7provides support to program with time varying values : declarative 8events and signals. React doesn't define any primitive event or 9signal, it lets the client chooses the concrete timeline. 10 11React is made of a single, independent, module and distributed under 12the ISC license. 13 14Homepage: <http://erratique.ch/software/react>""" 15maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 16authors: "The react programmers" 17license: "ISC" 18tags: ["reactive" "declarative" "signal" "event" "frp" "org:erratique"] 19homepage: "https://erratique.ch/software/react" 20doc: "https://erratique.ch/software/react/doc/" 21bug-reports: "https://github.com/dbuenzli/react/issues" 22depends: [ 23 "ocaml" {>= "4.08.0"} 24 "ocamlfind" {build} 25 "ocamlbuild" {build} 26 "topkg" {build & >= "1.0.3"} 27] 28build: ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"] 29dev-repo: "git+https://erratique.ch/repos/react.git" 30url { 31 src: "https://erratique.ch/software/react/releases/react-1.2.2.tbz" 32 checksum: 33 "sha512=18cdd544d484222ba02db6bd9351571516532e7a1c107b59bbe39193837298f5c745eab6754f8bc6ff125b387be7018c6d6e6ac99f91925a5e4f53af688522b1" 34} 35x-maintenance-intent: ["(latest)"]