forked from hbr/fmlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fmlib_parse.opam
40 lines (27 loc) · 980 Bytes
/
fmlib_parse.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
opam-version: "2.0"
synopsis: "Parsing with combinators and indentation sensitivity"
description: """
A parsing library with combinators in the style of Haskell's parsec.
The parsing combinators have support for indentation sensitivity. Therefore it
is easy to parse yaml files and indentation sensitive languages like Haskell and
Python.
Futhermore it is easy to generate user friendly error messages.
"""
maintainer: "Helmut Brandl <helmut.brandl@gmx.net>"
authors: [ "Helmut Brandl <helmut.brandl@gmx.net>" ]
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}
"ppx_inline_test" {>= "v0.13.0"}
"fmlib_std" {=version}
"fmlib_pretty" {=version}
]