this repo has no description
1opam-version: "2.0" 2synopsis: "Runner executable for Diskuv OCaml (DKML) installation" 3description: 4 "The runner executable is responsible for loading and running all DKML installation components." 5maintainer: ["opensource+diskuv-ocaml@support.diskuv.com"] 6authors: ["Diskuv, Inc. <opensource+diskuv-ocaml@support.diskuv.com>"] 7license: "Apache-2.0" 8homepage: "https://github.com/diskuv/dkml-install-api" 9bug-reports: "https://github.com/diskuv/dkml-install-api/issues" 10depends: [ 11 "ocaml" {>= "4.09" & < "5.1"} 12 "alcotest" {>= "1.4.0" & with-test} 13 "odoc" {>= "1.5.3" & with-doc} 14 "dkml-install" {= version} 15 "dune" {>= "2.9"} 16 "ppx_expect" {>= "v0.14.1"} 17 "astring" {>= "0.8.5"} 18 "bos" {>= "0.2.0"} 19 "cmdliner" {>= "1.0.4" & < "2.0.0"} 20 "fmt" {>= "0.8.9"} 21 "logs" {>= "0.7.0"} 22 "diskuvbox" {>= "0.1.0"} 23] 24dev-repo: "git+https://github.com/diskuv/dkml-install-api.git" 25build: [ 26 ["dune" "subst"] {dev} 27 [ 28 "dune" 29 "build" 30 "-p" 31 name 32 "-j" 33 jobs 34 "--promote-install-files=false" 35 "@install" 36 "@runtest" {with-test} 37 "@doc" {with-doc} 38 ] 39 ["dune" "install" "-p" name "--create-install-files" name] 40] 41url { 42 src: "https://github.com/diskuv/dkml-install-api/archive/v0.1.0.tar.gz" 43 checksum: [ 44 "md5=9c2fc122d49103ce9bf513fcc11b443d" 45 "sha512=c746d7a4482109c725bfe44542c146914add4d77e8e76556ce0de6e2567683a7ac7dc9909f1252aea7facbcf130153b8e752607a3c44e35b8cfd8ea5d99eb356" 46 ] 47}