this repo has no description
1opam-version: "2.0"
2synopsis: "Recursive descent parsing library for ocaml"
3description:
4 "Monadic, recursive descent based, parser construction library for ocaml. Comprehensively documented and tested."
5maintainer: ["Bikal Lem"]
6authors: ["Bikal Lem <gbikal@gmail.com>"]
7license: "MPL-2.0"
8homepage: "https://github.com/lemaetech/reparse"
9bug-reports: "https://github.com/lemaetech/reparse/issues"
10depends: [
11 "dune" {>= "2.7"}
12 "ocaml" {>= "4.10.0"}
13 "alcotest" {with-test}
14 "odoc" {with-doc}
15]
16build: [
17 ["dune" "subst"] {dev}
18 [
19 "dune"
20 "build"
21 "-p"
22 name
23 "-j"
24 jobs
25 "@install"
26 "@doc" {with-doc}
27 ]
28]
29dev-repo: "git+https://github.com/lemaetech/reparse.git"
30x-commit-hash: "ded9e38316b5bba51d02a003cfc9df18190f2d16"
31url {
32 src:
33 "https://github.com/lemaetech/reparse/releases/download/v2.0.0/reparse-unix-v2.0.0.tbz"
34 checksum: [
35 "sha256=93cee3d9f8842e85af5cb772f2586dccf1821f29959ee7f8effde1081cf650e7"
36 "sha512=69ee814e31af9a660a860b7768587a88e6fec4c918c05f237b3f665d67991a29cc8d8c2d55848b1cc38e75b712303cf225b66990cb80dbafce569e7e7b2166dd"
37 ]
38}