this repo has no description
1opam-version: "2.0" 2maintainer: "Hugo Heuzard <hugo.heuzard@gmail.com>" 3authors: ["Hugo Heuzard <hugo.heuzard@gmail.com>"] 4homepage: "https://github.com/ocsigen/reactiveData" 5dev-repo: "git+https://github.com/ocsigen/reactiveData.git" 6bug-reports: "https://github.com/ocsigen/reactiveData/issues" 7 8doc:"http://ocsigen.github.io/reactiveData/0.2.1/" 9 10tags: [ "reactive" "declarative" "signal" "event" "frp" ] 11license: "LGPL-3.0-only WITH OCaml-LGPL-linking-exception" 12 13depends: [ 14 "ocaml" {>= "3.11.0"} 15 "ocamlfind" 16 "react" 17] 18build: [ 19 [ 20 "ocaml" 21 "pkg/build.ml" 22 "native=%{ocaml:native}%" 23 "native-dynlink=%{ocaml:native}%" 24 ] 25 ["ocamlbuild" "-use-ocamlfind" "src/api.docdir/index.html"] {with-doc} 26] 27synopsis: 28 "Functional reactive programming with incremental changes in data structures" 29description: """ 30ReactiveData is an OCaml module for functional reactive 31programming (FRP) based on React. It adds support to incremental 32changes in data structures by reasoning on patches instead of absolute 33values.""" 34url { 35 src: "https://github.com/ocsigen/reactiveData/archive/0.2.1.tar.gz" 36 checksum: [ 37 "sha256=6e936dd738f5b48470c0479f8e184bce69c3162ed1c08ae66541450bca079a71" 38 "md5=f4b175db6d8108a6276895af7ad58128" 39 ] 40}