forked from zeta1999/ocaml-tree-sitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree-sitter.opam
39 lines (33 loc) · 861 Bytes
/
tree-sitter.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
opam-version: "2.0"
maintainer: "[email protected]"
authors: ["r2c"]
homepage: "https://github.com/returntocorp/ocaml-tree-sitter"
bug-reports: "https://github.com/returntocorp/ocaml-tree-sitter/issues"
dev-repo: "git+https://github.com/returntocorp/ocaml-tree-sitter.git"
license: "BSD-3-Clause"
build: [
["./configure"]
[make]
]
install: [make "install"]
depends: [
"alcotest"
"ANSITerminal"
"atdgen"
"cmdliner"
"conf-pkg-config"
"dune" {>= "2.1"}
"ocaml"
"ppx_deriving"
"ppx_sexp_conv"
"sexplib"
"tsort" {>= "2.0"}
]
synopsis: "Code generator for parsing the output of tree-sitter parsers"
description: """
Ocaml-tree-sitter translates a tree-sitter json grammar to OCaml code
for recovering a full CST from the output for a tree-sitter parser.
"""
url {
src: "git+https://github.com/returntocorp/ocaml-tree-sitter"
}