this repo has no description
1opam-version: "2.0"
2maintainer: "Jane Street developers"
3authors: ["Jane Street Group, LLC"]
4homepage: "https://github.com/ocaml-ppx/ppxlib"
5bug-reports: "https://github.com/ocaml-ppx/ppxlib/issues"
6dev-repo: "git+https://github.com/ocaml-ppx/ppxlib.git"
7doc: "https://ocaml-ppx.github.io/ppxlib/"
8license: "MIT"
9build: [
10 ["dune" "subst"] {dev}
11 ["dune" "build" "-p" name "-j" jobs]
12]
13run-test: [
14 ["dune" "runtest" "-p" name "-j" jobs]
15]
16depends: [
17 "ocaml" {>= "4.04.1"}
18 "ocaml" {with-test & >= "4.10" & < "4.12"}
19 "base" {>= "v0.11.0"}
20 "dune" {>= "1.11"}
21 "ocaml-compiler-libs" {>= "v0.11.0"}
22 "ocaml-migrate-parsetree" {>= "1.5.0" & < "2.0.0"}
23 "ppx_derivers" {>= "1.0"}
24 "stdio" {>= "v0.11.0"}
25 "ocamlfind" {with-test}
26 "cinaps" {with-test & >= "v0.12.1"}
27 "base" {with-test & < "v0.15"} # Printexc.register_printer in sexplib0 changed
28]
29synopsis: "Base library and tools for ppx rewriters"
30description: """
31A comprehensive toolbox for ppx development. It features:
32- a OCaml AST / parser / pretty-printer snapshot,to create a full
33 frontend independent of the version of OCaml;
34- a library for library for ppx rewriters in general, and type-driven
35 code generators in particular;
36- a feature-full driver for OCaml AST transformers;
37- a quotation mechanism allowing to write values representing the
38 OCaml AST in the OCaml syntax;
39- a generator of open recursion classes from type definitions.
40"""
41url {
42 src:
43 "https://github.com/ocaml-ppx/ppxlib/releases/download/0.14.0/ppxlib-0.14.0.tbz"
44 checksum: [
45 "sha256=a1a398f7c8f670d7de80468ff4639862b126f4dcac3de416e0c5c4d5860f3854"
46 "sha512=987062ecaa406a0bc4d87350947ab7da06b650c2f3c991a3aba470bd45c0a26619536bd50753de958a8a1f3b41f89fbcf7206bf3b5acc33002a9b2debd686d6c"
47 ]
48}