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.10"} 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.1.1" & < "2.0.0"} 20 "fmt" {>= "0.8.9"} 21 "logs" {>= "0.7.0"} 22 "diskuvbox" {>= "0.1.1"} 23] 24available: os = "win32" | os = "linux" | os = "macos" 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] 41dev-repo: "git+https://github.com/diskuv/dkml-install-api.git" 42url { 43 src: 44 "https://github.com/diskuv/dkml-install-api/releases/download/0.4.0/dkml-install-api-0.4.0.tar.gz" 45 checksum: [ 46 "md5=1b3f42a06b0643eb502e6f65d1769b98" 47 "sha512=55d47cb8c570f3e9fbdb5f4f7960c86fbe357df6c5364c82c9eb326150693fa1dbffe3fa3f5682e355f770c5f3c53bd7ce88ec1d1d9eefecceb8f44ed8b1d326" 48 ] 49}