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] { ocaml:version >= "4.06" & ocaml:version < "4.08" }
15]
16depends: [
17 "ocaml" {>= "4.04.1" & < "4.10.0"}
18 "base" {>= "v0.11.0"}
19 "dune" {>= "1.11"}
20 "ocaml-compiler-libs" {>= "v0.11.0"}
21 "ocaml-migrate-parsetree" {>= "1.3.1" & < "2.0.0"}
22 "ppx_derivers" {>= "1.0"}
23 "stdio" {>= "v0.11.0"}
24 "ocamlfind" {with-test}
25 "cinaps" {with-test & >= "v0.12.1"}
26]
27synopsis: "Base library and tools for ppx rewriters"
28description: """
29A comprehensive toolbox for ppx development. It features:
30- a OCaml AST / parser / pretty-printer snapshot,to create a full
31 frontend independent of the version of OCaml;
32- a library for library for ppx rewriters in general, and type-driven
33 code generators in particular;
34- a feature-full driver for OCaml AST transformers;
35- a quotation mechanism allowing to write values representing the
36 OCaml AST in the OCaml syntax;
37- a generator of open recursion classes from type definitions.
38"""
39url {
40 src:
41 "https://github.com/ocaml-ppx/ppxlib/releases/download/0.10.0/ppxlib-0.10.0.tbz"
42 checksum: [
43 "sha256=588e85c759688742ae0bd2cb1a53f0f555a76d8810ad9a9dbb026a076a0c10af"
44 "sha512=8e3e9399b260e16fb537cdd58706875933ecbf28e3bcddc1bf3e607a33307eb2191a7d3c315e8e4b51ec6f548779a0fad118826f709de65dddd3b2510f3e4bcc"
45 ]
46}