-
Notifications
You must be signed in to change notification settings - Fork 1
/
kdl.opam
33 lines (33 loc) · 791 Bytes
/
kdl.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
opam-version: "2.0"
name: "kdl"
version: "0.1.0"
synopsis: "OCaml implementation of the KDL document laguage"
maintainer: "https://github.com/Bannerets <[email protected]>"
authors: "https://github.com/Bannerets <[email protected]>"
license: "BlueOak-1.0.0"
tags: ["configuration-language" "data-serialization-format"]
homepage: "https://github.com/Bannerets/ocaml-kdl"
bug-reports: "https://github.com/Bannerets/ocaml-kdl/issues"
dev-repo: "git+https://github.com/Bannerets/ocaml-kdl.git"
depends: [
"ocaml" {>= "4.10"}
"dune" {>= "3.0"}
"menhir"
"menhirLib"
"sedlex" {>= "2.3"}
"sexplib0"
"ppx_expect" {with-test}
"odoc" {with-doc}
]
build: [
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@runtest" {with-test}
"@doc" {with-doc}
]
]