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