this repo has no description
1opam-version: "2.0"
2synopsis: "Tokenizing code with TextMate grammars for syntax highlighting"
3description: """
4
5This package provides functions for reading TextMate grammars and tokenizing
6code on a line-by-line basis. `textmate-language` can read grammars from the
7document types of the `plist-xml`, `ezjsonm`, and `yojson` libraries."""
8maintainer: ["Alan Hu <alanh@ccs.neu.edu>"]
9authors: ["Alan Hu <alanh@ccs.neu.edu>"]
10license: "MIT"
11tags: ["highlighting"]
12homepage: "https://github.com/alan-j-hu/ocaml-textmate-language"
13bug-reports: "https://github.com/alan-j-hu/ocaml-textmate-language/issues"
14depends: [
15 "dune" {>= "2.7"}
16 "oniguruma" {>= "0.1.2"}
17 "ocaml" {>= "4.08"}
18 "plist-xml" {>= "0.5" & with-test}
19 "alcotest" {>= "1.4" & with-test}
20 "ezjsonm" {>= "1.2" & with-test}
21 "yojson" {>= "1.7" & with-test}
22 "odoc" {with-doc}
23]
24build: [
25 ["dune" "subst"] {dev}
26 [
27 "dune"
28 "build"
29 "-p"
30 name
31 "-j"
32 jobs
33 "@install"
34 "@runtest" {with-test}
35 "@doc" {with-doc}
36 ]
37]
38dev-repo: "git+https://github.com/alan-j-hu/ocaml-textmate-language.git"
39url {
40 src:
41 "https://github.com/alan-j-hu/ocaml-textmate-language/releases/download/0.4.0/textmate-language-0.4.0.tbz"
42 checksum: [
43 "sha256=a88a57c9e8c1d09e2c889e4f400252cf24972db2d110989e2cd4985462b02908"
44 "sha512=76aefecd6b7c72435e0e8a0098d80baa90e5be1b35dc46d2a79c748959678dd16ce614d8c11e554d780bb31dc6a92f3d03d719f8df1cfda60905cdcca908f289"
45 ]
46}
47x-commit-hash: "bb5f2ae069d56afe02864f80151c7723eafcb73c"