this repo has no description
1opam-version: "2.0" 2synopsis: "API and registry for Diskuv OCaml (DKML) installation components" 3description: 4 "All DKML installation components implement the interfaces exposed in this API." 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" 10# Components can be assembled on any "host" build machine defined in 11# https://github.com/diskuv/dkml-install-api/blob/5cfd7b57c79d990c76a9bdc8f8f0fa9f6fd5346f/runner/src/host_abi.ml 12# into a installer that will run on any end-user machine defined in 13# https://github.com/diskuv/dkml-install-api/blob/5cfd7b57c79d990c76a9bdc8f8f0fa9f6fd5346f/runner/src/ocaml_abi.ml 14available: os = "win32" | os = "linux" | os = "macos" 15depends: [ 16 "ocaml" {>= "4.08.0"} 17 "alcotest" {>= "1.4.0" & with-test} 18 "odoc" {>= "1.5.3" & with-doc} 19 "dune" {>= "2.9"} 20 "ppx_deriving" {>= "5.2.1"} 21 "result" {>= "1.5"} 22 "astring" {>= "0.8.5"} 23 "bos" {>= "0.2.0"} 24 "cmdliner" {>= "1.0.4"} 25 "fmt" {>= "0.8.9"} 26 "tsort" {>= "2.1.0"} 27 "diskuvbox" {>= "0.1.0" & with-test} 28] 29build: [ 30 ["dune" "subst"] {dev} 31 [ 32 "dune" 33 "build" 34 "-p" 35 name 36 "-j" 37 jobs 38 "--promote-install-files=false" 39 "@install" 40 "@runtest" {with-test} 41 "@doc" {with-doc} 42 ] 43 ["dune" "install" "-p" name "--create-install-files" name] 44] 45dev-repo: "git+https://github.com/diskuv/dkml-install-api.git" 46url { 47 src: 48 "https://github.com/diskuv/dkml-install-api/releases/download/0.3.0/dkml-install-0.3.0.tbz" 49 checksum: [ 50 "sha256=c975d7d8d193946e268722538621aa4f99acdfcd7ead6a72157a2db80b98cb28" 51 "sha512=f799d6f44486ca7a780bb8d9d976056548b37cdf5211dd7608c32d65e1766ae9f4e113c03cfcfb9d0ba546adaf20e1176bc5531f9a5ca8c6c04497e5c76ba991" 52 ] 53} 54x-commit-hash: "160430ea6a95ee7ed8ba37697f28d47fcc090d67"