this repo has no description
1opam-version: "2.0" 2homepage: "http://reactiveml.org" 3dev-repo: "git+https://github.com/reactiveml/rml.git" 4license: [ "QPL-1.0" 5 "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" ] 6maintainer: "devel@reactiveml.org" 7bug-reports: "bugs@reactiveml.org" 8build: [ 9["./configure" "--prefix" "%{prefix}%"] 10[make] 11] 12install: [ 13 [make "install"] 14] 15depends: [ 16 "ocaml" {>= "4.07" & < "5.0~"} 17 "num" 18] 19depexts: ["patch"] {os-distribution = "alpine"} 20synopsis: 21 "ReactiveML: a programming language for implementing interactive systems" 22description: """ 23ReactiveML is based on the synchronous reactive model embedded in an ML 24language (here a subset of OCaml). It provides synchronous parallel 25composition and dynamic features like the dynamic creation of processes. 26In ReactiveML, the reactive model is integrated at the language level 27(not as a library) which leads to safer and more natural programming.""" 28authors: "Louis Mandel louis@reactiveml.org" 29url { 30 src: "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/rml-1.09.07-2021-07-26.tar.gz" 31 checksum: [ 32 "sha256=74acc5319df33b4694d6894b0b8023c1ce3f8f0749c6f4dc587a42c102d809b0" 33 "md5=4fc5ca8f941f6a7f060fb9252389b8b4" 34 ] 35}