-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathppx.opam
48 lines (47 loc) · 1.4 KB
/
ppx.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Base library and tools for ppx rewriters"
description: """
A comprehensive toolbox for ppx development. It features:
- a OCaml AST / parser / pretty-printer snapshot,to create a full
frontend independent of the version of OCaml;
- a library for library for ppx rewriters in general, and type-driven
code generators in particular;
- a feature-full driver for OCaml AST transformers;
- a quotation mechanism allowing to write values representing the
OCaml AST in the OCaml syntax;
- a generator of open recursion classes from type definitions."""
maintainer: ["opensource@janestreet.com"]
authors: ["Jane Street Group, LLC"]
homepage: "https://github.com/ocaml-ppx/ppx"
bug-reports: "https://github.com/ocaml-ppx/ppx/issues"
depends: [
"ocaml" {>= "4.07" & < "4.08"}
"ocaml-syntax-shims"
"astlib"
"expect_test_helpers_kernel" {with-test}
"ppx_expect" {with-test}
"base" {>= "v0.11.0" & with-test}
"stdio" {>= "v0.11.0" & with-test}
"dune"
"ocaml-compiler-libs" {>= "v0.11.0"}
"ocaml-migrate-parsetree" {>= "1.0.9"}
"ppx_derivers" {>= "1.0"}
"cinaps" {with-test}
"ocamlfind" {with-test}
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ocaml-ppx/ppx.git"