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" 10depends: [ 11 "ocaml" {>= "4.08.0"} 12 "alcotest" {>= "1.4.0" & with-test} 13 "odoc" {>= "1.5.3" & with-doc} 14 "dune" {>= "2.9"} 15 "ppx_deriving" {>= "5.2.1"} 16 "result" {>= "1.5"} 17 "astring" {>= "0.8.5"} 18 "bos" {>= "0.2.0"} 19 "cmdliner" {>= "1.0.4"} 20 "fmt" {>= "0.8.9"} 21 "tsort" {>= "2.1.0"} 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-install-api.git" 40url { 41 src: "https://github.com/diskuv/dkml-install-api/archive/v0.1.0.tar.gz" 42 checksum: [ 43 "md5=9c2fc122d49103ce9bf513fcc11b443d" 44 "sha512=c746d7a4482109c725bfe44542c146914add4d77e8e76556ce0de6e2567683a7ac7dc9909f1252aea7facbcf130153b8e752607a3c44e35b8cfd8ea5d99eb356" 45 ] 46}