-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkdl.opam
33 lines (33 loc) · 741 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.2.0"
synopsis: "OCaml implementation of the KDL Document Language"
maintainer: "eilvelia <[email protected]>"
authors: "eilvelia <[email protected]>"
license: "MPL-2.0"
tags: ["data-serialization-format" "configuration-format" "org:eilvelia"]
homepage: "https://github.com/eilvelia/ocaml-kdl"
bug-reports: "https://github.com/eilvelia/ocaml-kdl/issues"
dev-repo: "git+https://github.com/eilvelia/ocaml-kdl.git"
depends: [
"ocaml" {>= "4.14"}
"dune" {>= "3.0"}
"menhir"
"menhirLib"
"sexplib0"
"ppx_expect" {with-test}
"zarith" {with-test}
"odoc" {with-doc}
]
build: [
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@runtest" {with-test}
"@doc" {with-doc}
]
]