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