this repo has no description
1opam-version: "2.0"
2synopsis: "Declarative events and signals for OCaml"
3description: "React is an OCaml module for functional reactive programming (FRP). It provides support to program with time varying values : declarative events and signals. React doesn't define any primitive event or signal, it lets the client chooses the concrete timeline."
4maintainer: "dev@ocsigen.org"
5authors: ["Hugo Heuzard <hugo.heuzard@gmail.com>"]
6homepage: "https://github.com/ocsigen/reactiveData"
7dev-repo: "git+https://github.com/ocsigen/reactiveData.git"
8bug-reports: "https://github.com/ocsigen/reactiveData/issues"
9
10doc:"http://ocsigen.github.io/reactiveData/dev/"
11
12tags: [ "reactive" "declarative" "signal" "event" "frp" ]
13license: "LGPL-3.0-or-later WITH OCaml-LGPL-linking-exception"
14
15depends: [
16 "ocaml" {>= "4.08"}
17 "dune" {>= "1.0"}
18 "react" {>= "1.2.1" < "1.3"}
19]
20build: [
21 ["dune" "subst"] {dev}
22 ["dune" "build" "-p" name "-j" jobs]
23 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
24]
25url {
26 src: "https://github.com/ocsigen/reactiveData/archive/0.3.tar.gz"
27 checksum: [
28 "md5=ecafae07f46cefa1cc5ef1ca176eba95"
29 "sha256=29e6fd520a839b04b0fdfbb71766ac1b0d78c39de17722460bd15718affc4bf6"
30 ]
31}