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