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 "fmlib_std" {=version}
46 "fmlib_pretty" {=version}
47 "fmlib_parse" {=version}
48 "fmlib_js" {=version}
49]
50url {
51 src: "https://github.com/hbr/fmlib/archive/0.5.2.tar.gz"
52 checksum: [
53 "sha256=0e0b782826fe2e3dc4ce2fbda97469b8c5e266dac6a914627ad3e95782ea3aa3"
54 "md5=8e0a9f94ebcbd69366c940e978270a07"
55 ]
56}