this repo has no description
1opam-version: "2.0"
2synopsis:
3 "An interpreter for the embedded DSL of Dune that shows the DSL as a real Dune file"
4maintainer: "opensource+dkml@support.diskuv.com"
5authors: "Diskuv, Inc. <opensource+dkml@support.diskuv.com>"
6license: "Apache-2.0"
7homepage: "https://github.com/diskuv/dkml-dune-dsl"
8doc: "https://diskuv.github.io/dkml-dune-dsl/dkml-dune-dsl-show/index.html"
9bug-reports: "https://github.com/diskuv/dkml-dune-dsl/issues"
10depends: [
11 "dune" {>= "2.9"}
12 "ocaml" {>= "4.12.1"}
13 "dkml-dune-dsl" {= version}
14 "astring" {>= "0.8.5"}
15 "ezjsonm" {>= "1.3.0"}
16 "fmt" {>= "0.9.0"}
17 "mustache" {>= "3.1.0"}
18 "menhir" {>= "20180528"}
19 "sexp_pretty" {>= "v0.14"}
20 "alcotest" {>= "1.5.0" & with-test}
21 "odoc" {with-doc}
22]
23build: [
24 ["dune" "subst"] {dev}
25 [
26 "dune"
27 "build"
28 "-p"
29 name
30 "-j"
31 jobs
32 "--promote-install-files=false"
33 "@install"
34 "@runtest" {with-test}
35 "@doc" {with-doc}
36 ]
37 ["dune" "install" "-p" name "--create-install-files" name]
38]
39dev-repo: "git+https://github.com/diskuv/dkml-dune-dsl.git"
40url {
41 src:
42 "https://github.com/diskuv/dkml-dune-dsl/releases/download/0.1.4/src.tar.gz"
43 checksum: [
44 "md5=e15cffe625e826450bdc86593ef15e7a"
45 "sha512=bfb8ef843c3954fcc6fc70d4576c2a599bfb88d94bbed5887d38d8fb20b86f656c19acb3fa73c49c443376423166527a019900cfcee574f7fede54b04c82a491"
46 ]
47}