this repo has no description
1opam-version: "2.0"
2maintainer: "Marshall Roch <mroch@fb.com>"
3authors: ["Marshall Roch <mroch@fb.com>"]
4license: "MIT"
5homepage: "https://github.com/flowtype/ocaml-ppx_gen_rec"
6bug-reports: "https://github.com/flowtype/ocaml-ppx_gen_rec/issues"
7depends: [
8 "ocaml"
9 "dune"
10 "ocaml-migrate-parsetree" {>= "1.1.0" & < "2.0.0"}
11]
12build: ["dune" "build" "-p" name "-j" jobs]
13dev-repo: "git+https://github.com/flowtype/ocaml-ppx_gen_rec.git"
14synopsis: "A ppx rewriter that transforms a recursive module expression into a `struct`"
15description: """
16In a recursive module expression, the struct can be derived from the signature automatically
17by the compiler. This package does the same thing, but doing it this way allows ppx_deriving
18to transform the signature and struct separately.
19"""
20url {
21 src:
22 "https://github.com/flowtype/ocaml-ppx_gen_rec/releases/download/v1.1.0/ppx_gen_rec-v1.1.0.tbz"
23 checksum: [
24 "sha256=7061496354023c182f189f02ee3dc5a8ae54dbb75b66a5effb09226ce722913b"
25 "sha512=37dded76035765673947d1d5d5e49ae7d36f80baaf7b5315d78e1392546c93d12ee164ce23baec6007879d3a8277c860c130d27b09be77b0caf736c7144881f0"
26 ]
27}