this repo has no description
1opam-version: "2.0"
2
3synopsis: "Generic programming with extensible transformations"
4description: """
5Yet another library for generic programming. Provides syntax extensions
6both for camlp5 and PPX which allow decoration of type declarations with
7following compile-time code generation. Provides the way for creating
8plugins (compiled separately from the library) for enchancing supported
9type transformations.
10
11Strongly reminds the `visitors` library from François Pottier.
12During desing of a library of these kind there many possible
13design decision and in many cases we decided to implement
14the decision opposite to the one used in `visitors`."""
15
16
17maintainer: ["Kakadu@pm.me"]
18authors: ["https://github.com/dboulytchev" "https://github.com/Kakadu"]
19license: "LGPL-2.1"
20homepage: "https://github.com/JetBrains-Research/GT"
21bug-reports: "https://github.com/JetBrains-Research/GT/issues"
22
23depends: [
24 "dune" {>= "2.8"}
25 "ocaml" {>= "4.10"}
26 "ppxlib" {>= "0.22" & < "0.25"}
27 "ocamlfind"
28 "ocamlgraph"
29 "logger-p5"
30 "ppx_inline_test"
31 "ocaml-migrate-parsetree" {>= "2.1.0"}
32 "camlp5" {>= "8.00.02"}
33 "conf-m4" {build}
34 "base"
35 "odoc" {with-doc}
36]
37
38
39build: [
40 ["dune" "subst"] {dev}
41 ["dune" "build" "-p" name "-j" jobs]
42]
43
44dev-repo: "git+https://github.com/JetBrains-Research/GT.git"
45url {
46 src: "https://github.com/JetBrains-Research/GT/archive/refs/tags/0.5.0.tar.gz"
47 checksum: [
48 "sha256=3f26c69a215066b42c6edde2ea4cd4516bdc9a01482b64355d3adf87ed85e179"
49 "sha512=7a5236618124f370aa373483255bd3efeb5c251005efa7d43aadb6be968df310b5f312b8066245544cfdf9972a7944f0ff2448bd09cb8a8e0bb5f8b1f9b5340b"
50 ]
51}