this repo has no description
1opam-version: "2.0"
2
3synopsis: "Functional monadic library"
4
5
6description: """
7
8Umbrella for a collection of libraries supporting functional programming with
9managed effects. The umbrella contains only documentation. See the following
10packages to get the functionality:
11
12- fmlib_std: A lot of standard data types.
13
14- fmlib_parse: Monadic parsing functions with combinators suitable for
15 incremental and indentation sensitive parsing.
16
17- fmlib_pretty: Pretty printing functions. Prints hierachical structures like
18 expressions and indented paragraphs nicely.
19
20- fmlib_browser: Functional browswer applications
21
22- fmlib_js: Interface to javscript via js_of_ocaml.
23
24"""
25
26
27maintainer: "Helmut Brandl <helmut.brandl@gmx.net>"
28
29authors: [ "Helmut Brandl <helmut.brandl@gmx.net>" ]
30
31license: "BSD-3-Clause"
32homepage: "https://github.com/hbr/fmlib"
33dev-repo: "git+https://github.com/hbr/fmlib.git"
34bug-reports: "https://github.com/hbr/fmlib/issues"
35
36
37build: [
38 ["dune" "subst"] {dev}
39 ["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}]
40]
41
42
43depends: [
44 "ocaml" {>= "4.08.0"}
45 "dune" {>= "3.0.0"}
46 "odoc" {with-doc}
47 "fmlib_std" {=version}
48 "fmlib_pretty" {=version}
49 "fmlib_parse" {=version}
50 "fmlib_js" {=version}
51 "fmlib_browser" {=version}
52]
53url {
54 src: "https://github.com/hbr/fmlib/archive/0.5.3.tar.gz"
55 checksum: [
56 "sha256=85755ce16ce17815b17b0094ef0fecd76fa80f93bf02a68fc4ea60509aa6b855"
57 "md5=32997b89bcb50cc2a8c41cf96834b5b1"
58 ]
59}