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-only WITH OCaml-LGPL-linking-exception" 14 15depends: [ 16 "ocaml" {>= "4.06.1" & < "5.0"} 17 "ocamlfind" 18 "react" {>= "1.2.1" & < "1.3"} 19] 20build: [ 21 [ 22 "ocaml" 23 "pkg/build.ml" 24 "native=%{ocaml:native}%" 25 "native-dynlink=%{ocaml:native}%" 26 ] 27 ["ocamlbuild" "-use-ocamlfind" "src/api.docdir/index.html"] {with-doc} 28] 29url { 30 src: "https://github.com/ocsigen/reactiveData/archive/0.2.2.tar.gz" 31 checksum: [ 32 "md5=d08a22087b617ce50ac279e3f058674a" 33 "sha512=56c03d528feec769718c92075c49759dac287b93fe97d816da5cfadb26836d3855176cd81d4cec4441591dd9314e881045912a37edf584ad149ebd048016a4bf" 34 ] 35}