this repo has no description
1opam-version: "2.0"
2
3synopsis: "Parsing with combinators and indentation sensitivity"
4
5description: """
6
7A parsing library with combinators in the style of Haskell's parsec.
8
9The parsing combinators have support for indentation sensitivity. Therefore it
10is easy to parse yaml files and indentation sensitive languages like Haskell and
11Python.
12
13Futhermore it is easy to generate user friendly error messages.
14
15"""
16
17maintainer: "Helmut Brandl <helmut.brandl@gmx.net>"
18
19authors: [ "Helmut Brandl <helmut.brandl@gmx.net>" ]
20
21license: "BSD-3-Clause"
22homepage: "https://github.com/hbr/fmlib"
23dev-repo: "git+https://github.com/hbr/fmlib.git"
24bug-reports: "https://github.com/hbr/fmlib/issues"
25
26
27build: [
28 ["dune" "subst"] {dev}
29 ["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}]
30]
31
32
33depends: [
34 "ocaml" {>= "4.08.0"}
35 "dune" {>= "3.0.0"}
36 "odoc" {with-doc}
37 "ppx_inline_test" {>= "v0.13.0"}
38 "fmlib_std" {=version}
39 "fmlib_pretty" {=version}
40]
41url {
42 src: "https://github.com/hbr/fmlib/archive/0.5.3.tar.gz"
43 checksum: [
44 "sha256=85755ce16ce17815b17b0094ef0fecd76fa80f93bf02a68fc4ea60509aa6b855"
45 "md5=32997b89bcb50cc2a8c41cf96834b5b1"
46 ]
47}