this repo has no description
1opam-version: "2.0"
2synopsis:
3 "Embedded DSL for Dune files to do syntax checking, auto-completion and generate dune.inc include files"
4description:
5 "dkml-dune-dsl lets you define Dune files in OCaml code with your favorite auto-completing IDE, compile it to an executable, and use it as a generator of your dune.inc files."
6maintainer: "opensource+diskuv-ocaml@support.diskuv.com"
7authors: "Diskuv, Inc. <opensource+diskuv-ocaml@support.diskuv.com>"
8license: "Apache-2.0"
9homepage: "https://github.com/diskuv/dkml-dune-dsl#readme"
10doc: "https://diskuv.github.io/dkml-dune-dsl/dkml-dune-dsl/index.html"
11bug-reports: "https://github.com/diskuv/dkml-dune-dsl/issues"
12depends: [
13 "dune" {>= "2.9"}
14 "ocaml" {>= "4.12.1"}
15 "odoc" {with-doc}
16]
17build: [
18 ["dune" "subst"] {dev}
19 [
20 "dune"
21 "build"
22 "-p"
23 name
24 "-j"
25 jobs
26 "--promote-install-files=false"
27 "@install"
28 "@runtest" {with-test}
29 "@doc" {with-doc}
30 ]
31 ["dune" "install" "-p" name "--create-install-files" name]
32]
33dev-repo: "git+https://github.com/diskuv/dkml-dune-dsl.git"
34url {
35 src:
36 "https://github.com/diskuv/dkml-dune-dsl/releases/download/0.1.0/dkml-dune-dsl-0.1.0.tar.gz"
37 checksum: [
38 "md5=2c09714a7cb75c351d8b8fed6b186e2b"
39 "sha512=ce8a21efbc9a7f238de703206293f0a7c3eb938084afe0e582fefe58840d78939b0f8ab717ca745db732a1e50039bb0ab79618252c6e705adaeb5257e381de83"
40 ]
41}