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/"
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.tar.gz"
36 checksum: [
37 "sha256=d80d425d2746ffc7bd1b88e9528b8236a5ca13cca636662dee1a59e96d675367"
38 "md5=02c61c421c8bf02310acee73f4beafdd"
39 ]
40}