this repo has no description
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "OCaml PPX extension for writing stream parsers"
4description: """
5
6 This library is an OCaml ppx rewriter for writing stream parser.
7 Its notation is close to the notation of Camlp4 stream parsers.
8 Hence, it can be used as a replacement for projects
9 that still rely on the stream parser notation of Camlp4.
10
11 For newer projects, it is advised to use lexer and parser generators.
12 """
13maintainer: ["Niels Mommen <nielsmommen@hotmail.com>"]
14authors: ["Niels Mommen <nielsmommen@hotmail.com>"]
15license: "ISC"
16tags: ["stream parser"]
17homepage: "https://github.com/NielsMommen/ppx_parser"
18bug-reports: "https://github.com/NielsMommen/ppx_parser/issues"
19depends: [
20 "ocaml" {>= "4.13.0"}
21 "dune" {>= "2.9"}
22 "ppxlib" {>= "0.27.0" & < "0.36.0"}
23 "alcotest" {with-test & >= "1.2.0"}
24 "ppx_deriving" {with-test}
25 "camlp-streams" {with-test}
26 "odoc" {with-doc}
27]
28build: [
29 ["dune" "subst"] {dev}
30 [
31 "dune"
32 "build"
33 "-p"
34 name
35 "-j"
36 jobs
37 "--promote-install-files=false"
38 "@install"
39 "@runtest" {with-test}
40 "@doc" {with-doc}
41 ]
42 ["dune" "install" "-p" name "--create-install-files" name]
43]
44dev-repo: "git+https://github.com/NielsMommen/ppx_parser.git"
45url {
46 src:
47 "https://github.com/NielsMommen/ppx_parser/archive/refs/tags/0.1.1.tar.gz"
48 checksum: [
49 "md5=c6d4c4fbff9510eaa8d2aded7e2baa8b"
50 "sha512=a7da67d8b8a310a091eed8ff238276ded03d7c75b58b7ca91d7e3e38170ad955c91742a878f49614eb7e28748000a80220df883f6dd7e0de64b585fa2e8511eb"
51 ]
52}