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_js: Interface to javscript via js_of_ocaml.
21
22"""
23
24
25maintainer: "Helmut Brandl <helmut.brandl@gmx.net>"
26
27authors: [ "Helmut Brandl <helmut.brandl@gmx.net>" ]
28
29license: "BSD-3-Clause"
30homepage: "https://github.com/hbr/fmlib"
31dev-repo: "git+https://github.com/hbr/fmlib.git"
32bug-reports: "https://github.com/hbr/fmlib/issues"
33
34
35build: [
36 ["dune" "subst"] {dev}
37 ["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}]
38]
39
40
41depends: [
42 "ocaml" {>= "4.08.0"}
43 "dune" {>= "1.10"}
44 "odoc" {with-doc}
45 "ppx_inline_test" {>= "v0.13.0"}
46]
47
48url {
49 src: "https://github.com/hbr/fmlib/archive/0.3.1.tar.gz"
50 checksum: [
51 "sha256=ed807c1c45860570288f1b062cc6d15cefc12d97908095be0108ef390577d300"
52 "md5=7c9dde2b12d22a3f40a8e00c0c793ba6"
53 ]
54}