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 remids 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.hafanana@gmail.com"
18authors: ["https://github.com/dboulytchev" "https://github.com/Kakadu"]
19homepage: "https://github.com/JetBrains-Research/GT"
20bug-reports: "https://github.com/JetBrains-Research/GT/issues"
21
22depends: [
23 "ocaml" { >= "4.10.0" }
24 # 4.10 is required only because camlp5 has a few glitches in old compilers
25 # because a few features are not properly backported (and probably will never be)
26 "camlp5" { >= "8.00~alpha01" & < "8.00" }
27 "ocamlfind" { build }
28 "conf-m4" { build }
29 "dune" { > "2.7" }
30 "ocamlgraph"
31 "ppxlib" {>= "0.9.0" & <= "0.13.0" }
32 "ocaml-migrate-parsetree" { < "2" }
33]
34
35build: [
36 ["dune" "subst"] {dev}
37 ["dune" "build" "-p" "GT,GT-p5" "-j" jobs]
38]
39install: ["dune" "install" "-p" "GT,GT-p5"]
40
41dev-repo: "git+https://github.com/JetBrains-Research/GT.git"
42url {
43 src: "https://github.com/Kakadu/GT/archive/v0.3.0.zip"
44 checksum: [
45 "sha256=58aa091948383ffa6c452b89880becae980ae32cc3a4969fe1c636e46810db69"
46 "sha512=ee878ba4c2ee16f5b77f4b4e98664d53e91b7a710b9162905b9a43118a03e9c0d7b378a13e104e16a84556bca1176026d93f11934d69eecb459b771e9340ffd7"
47 ]
48}