-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfmlib.opam
52 lines (34 loc) · 1.26 KB
/
fmlib.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
opam-version: "2.0"
synopsis: "Functional monadic library"
description: """
Umbrella for a collection of libraries supporting functional programming with
managed effects. The umbrella contains only documentation. See the following
packages to get the functionality:
- fmlib_std: A lot of standard data types.
- fmlib_parse: Monadic parsing functions with combinators suitable for
incremental and indentation sensitive parsing.
- fmlib_pretty: Pretty printing functions. Prints hierachical structures like
expressions and indented paragraphs nicely.
- fmlib_browser: Functional browser applications
- fmlib_js: Interface to javscript via js_of_ocaml.
"""
maintainer: "Helmut Brandl <[email protected]>"
authors: [ "Helmut Brandl <[email protected]>" ]
license: "BSD-3-Clause"
homepage: "https://github.com/hbr/fmlib"
dev-repo: "git+https://github.com/hbr/fmlib.git"
bug-reports: "https://github.com/hbr/fmlib/issues"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}]
]
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "3.0.0"}
"odoc" {with-doc}
"fmlib_std" {=version}
"fmlib_pretty" {=version}
"fmlib_parse" {=version}
"fmlib_js" {=version}
"fmlib_browser" {=version}
]