this repo has no description
1opam-version: "2.0" 2synopsis: "Tokenizing source code with TextMate grammars" 3description: """ 4 5Tokenizing source code with TextMate grammars. 6 7Note that this library uses PCRE regex, while TextMate uses the Oniguruma 8dialect.""" 9maintainer: ["Alan Hu <alanh@ccs.neu.edu>"] 10authors: ["Alan Hu <alanh@ccs.neu.edu>"] 11license: "MIT" 12homepage: "https://github.com/alan-j-hu/ocaml-textmate-language" 13doc: "https://alan-j-hu.github.io/ocaml-textmate-language/" 14bug-reports: "https://github.com/alan-j-hu/ocaml-textmate-language/issues" 15depends: [ 16 "ocaml" {>= "4.08"} 17 "dune" {>= "2.7"} 18 "pcre" {>= "7.3" & < "8.0"} 19 "odoc" {with-doc} 20] 21build: [ 22 ["dune" "subst"] {dev} 23 [ 24 "dune" 25 "build" 26 "-p" 27 name 28 "-j" 29 jobs 30 "@install" 31 "@runtest" {with-test} 32 "@doc" {with-doc} 33 ] 34] 35dev-repo: "git+https://github.com/alan-j-hu/ocaml-textmate-language.git" 36x-commit-hash: "b8bd4a9f54968f39d3499d491b1ad8a601559361" 37url { 38 src: 39 "https://github.com/alan-j-hu/ocaml-textmate-language/releases/download/0.1.0/textmate-language-0.1.0.tbz" 40 checksum: [ 41 "sha256=16924e13a471b9e7974756fdbbabc2b4b9ff410b1e85403453759e74a0070aa9" 42 "sha512=a01405735dd23681a7191f18401cb2f2592b9fb9f3a4f317e3a46a3b97bbd403aa60b8eaaf59c02640df54580ee07507f30658d02782a6a495517559037b29c5" 43 ] 44}