-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmparser.opam
35 lines (34 loc) · 949 Bytes
/
mparser.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "1.3"
synopsis: "A simple monadic parser combinator library"
description: """
This library implements a rather complete and efficient monadic parser
combinator library similar to the Parsec library for Haskell by Daan Leijen and
the FParsec library for FSharp by Stephan Tolksdorf."""
maintainer: ["Max Mouratov <[email protected]>"]
authors: [
"Holger Arnold <[email protected]>" "Max Mouratov <[email protected]>"
]
license: "LGPL-2.1 with OCaml linking exception"
homepage: "https://github.com/murmour/mparser"
bug-reports: "https://github.com/murmour/mparser/issues"
depends: [
"dune" {>= "1.11"}
"ocaml" {>= "4.02"}
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/murmour/mparser.git"