this repo has no description
1opam-version: "2.0"
2synopsis: "A simple monadic parser combinator library"
3description: """
4This library implements a rather complete and efficient monadic parser
5combinator library similar to the Parsec library for Haskell by Daan Leijen and
6the FParsec library for FSharp by Stephan Tolksdorf."""
7maintainer: ["Max Mouratov <mmouratov@gmail.com>"]
8authors: [
9 "Holger Arnold <holger@harnold.org>" "Max Mouratov <mmouratov@gmail.com>"
10]
11license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
12homepage: "https://github.com/murmour/mparser"
13bug-reports: "https://github.com/murmour/mparser/issues"
14depends: [
15 "dune" {>= "1.11"}
16 "ocaml" {>= "4.02"}
17]
18build: [
19 ["dune" "subst"] {dev}
20 [
21 "dune"
22 "build"
23 "-p"
24 name
25 "-j"
26 jobs
27 "@install"
28 "@runtest" {with-test}
29 "@doc" {with-doc}
30 ]
31]
32dev-repo: "git+https://github.com/murmour/mparser.git"
33url {
34 src: "https://github.com/murmour/mparser/archive/1.3.tar.gz"
35 checksum: [
36 "sha256=c17137d11e23435cef85301b7fc1513e3ebf7b52b9c19e7d6770e9b021f3d0d8"
37 "md5=3180cb522747aac876cc93e50ccd8d78"
38 ]
39}