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.09" } 15] 16depends: [ 17 "ocaml" {>= "4.04.1" & < "4.10.0"} 18 "base" {>= "v0.11.0"} 19 "dune" 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] 26synopsis: "Base library and tools for ppx rewriters" 27description: """ 28A comprehensive toolbox for ppx development. It features: 29- a OCaml AST / parser / pretty-printer snapshot,to create a full 30 frontend independent of the version of OCaml; 31- a library for library for ppx rewriters in general, and type-driven 32 code generators in particular; 33- a feature-full driver for OCaml AST transformers; 34- a quotation mechanism allowing to write values representing the 35 OCaml AST in the OCaml syntax; 36- a generator of open recursion classes from type definitions. 37""" 38url { 39 src: 40 "https://github.com/ocaml-ppx/ppxlib/archive/0.9.0.tar.gz" 41 checksum: [ 42 "sha256=d269f882a31ff75095a80793082f7481884ca75ef867c8c409f26ad36f9a0a54" 43 "sha512=b903b0386739e17107f89fb9d7c861e95232c0deebbceeacad2d54f1ef771eb942a63e6057d2e3828f4c299c896c6488b6fd351bc150fd4e49d5a48bef84d8a8" 44 ] 45}