-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathhilite.opam
33 lines (33 loc) · 834 Bytes
/
hilite.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Build time syntax highlighting"
description:
"A library for adding syntax highlighting to OCaml-related code and outputing to HTML"
maintainer: ["[email protected]"]
authors: ["Patrick Ferris"]
license: "ISC"
tags: ["syntax" "highlighting"]
homepage: "https://github.com/patricoferris/hilite"
bug-reports: "https://github.com/patricoferris/hilite/issues"
depends: [
"dune" {>= "3.8"}
"mdx" {>= "2.4.1" & with-test}
"cmarkit" {>= "0.3.0" & with-test}
"textmate-language" {>= "0.3.3"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/patricoferris/hilite.git"