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"
11homepage: "https://github.com/alan-j-hu/ocaml-textmate-language"
12doc: "https://alan-j-hu.github.io/ocaml-textmate-language/"
13bug-reports: "https://github.com/alan-j-hu/ocaml-textmate-language/issues"
14depends: [
15 "dune" {>= "2.7"}
16 "ocaml" {>= "4.08"}
17 "oniguruma" {< "0.2.0"}
18 "alcotest" {>= "1.4" & < "2" & with-test}
19 "ezjsonm" {>= "1.2" & < "2" & with-test}
20 "markup" {>= "1.0" & with-test}
21 "plist-xml" {< "0.4.0" & with-test}
22 "yojson" {>= "1.7" & < "2" & with-test}
23 "odoc" {with-doc}
24]
25build: [
26 ["dune" "subst"] {dev}
27 [
28 "dune"
29 "build"
30 "-p"
31 name
32 "-j"
33 jobs
34 "@install"
35 "@runtest" {with-test}
36 "@doc" {with-doc}
37 ]
38]
39dev-repo: "git+https://github.com/alan-j-hu/ocaml-textmate-language.git"
40url {
41 src:
42 "https://github.com/alan-j-hu/ocaml-textmate-language/releases/download/0.3.1/textmate-language-0.3.1.tbz"
43 checksum: [
44 "sha256=f8fb3c2bc48af623960678bdd311434d42cf4e972d21c862f66803ec82853edf"
45 "sha512=267883553691250de845e52e07069bbf256b48541552a76d9052641d4287ad13ebc8287b2ed7faec5521eb93d0a26df485abfb09c9f815f45b24a1034bedb4c7"
46 ]
47}
48x-commit-hash: "d400bc79d8086c92046dad701f826fa5698505f1"