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+diskuv-ocaml@support.diskuv.com" 5authors: "Diskuv, Inc. <opensource+diskuv-ocaml@support.diskuv.com>" 6license: "Apache-2.0" 7homepage: "https://github.com/diskuv/dkml-dune-dsl#readme" 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.0/dkml-dune-dsl-0.1.0.tar.gz" 43 checksum: [ 44 "md5=2c09714a7cb75c351d8b8fed6b186e2b" 45 "sha512=ce8a21efbc9a7f238de703206293f0a7c3eb938084afe0e582fefe58840d78939b0f8ab717ca745db732a1e50039bb0ab79618252c6e705adaeb5257e381de83" 46 ] 47}