this repo has no description
1opam-version: "2.0"
2maintainer: "Petter A. Urkedal <paurkedal@gmail.com>"
3authors: [
4 "Petter A. Urkedal <paurkedal@gmail.com>"
5]
6license: "LGPL-3.0-only WITH OCaml-LGPL-linking-exception"
7homepage: "https://github.com/paurkedal/ocaml-cumulus/"
8doc: "https://paurkedal.github.io/ocaml-cumulus/index.html"
9bug-reports: "https://github.com/paurkedal/ocaml-cumulus/issues"
10dev-repo: "git+https://github.com/paurkedal/ocaml-cumulus.git"
11
12depends: [
13 "dune" {>= "2.5"}
14 "react"
15 "ocaml" {>= "4.08.1"}
16]
17
18build: [
19 ["dune" "build" "-p" name "-j" jobs]
20 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
21]
22synopsis: "Differential FRP based on the React library"
23description: """
24Cumulus defines a signal-like type, which facilitates differential updates
25of the underlying value. When a cumulus signal is changed, it emits a patch
26along with the new value, allowing consumers to integrate it into an
27existing value rather than rebuilding its value from scratch. Cumulus is
28based on the React FRP library.
29"""
30x-commit-hash: "7564ff1555ff10d9be8285bd0ee5002be2ee8ecf"
31url {
32 src:
33 "https://github.com/paurkedal/ocaml-cumulus/releases/download/v0.0.1/cumulus-v0.0.1.tbz"
34 checksum: [
35 "sha256=f8b36587ef1cd547541e16fceb7b81cc1bbed26325200e51248564d094beff25"
36 "sha512=5515aff4a852decb9e9a078aa6692eb6c2d7108d55b3385396faa7f55f5d5af9c510911608e0f5a3e24ce736fe0742dd227bcc683eb56b45890495f38da5ac0e"
37 ]
38}