this repo has no description
1opam-version: "2.0" 2maintainer: "dave@recoil.org" 3authors: ["Dave Scott" "Jon Ludlam"] 4license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 5tags: ["org:mirage" "org:xapi-project"] 6homepage: "https://github.com/mirage/ocaml-vhd" 7doc: "https://mirage.github.io/ocaml-vhd/" 8bug-reports: "https://github.com/mirage/ocaml-vhd/issues" 9depends: [ 10 "ocaml" {>= "4.02.3"} 11 "cstruct" {< "6.0.0"} 12 "lwt" {>= "3.2.0"} 13 "mirage-block" {< "2.0.0"} 14 "mirage-types-lwt" {>= "3.0.0" & < "3.7.0"} 15 "ounit" 16 "vhd-format" 17 "io-page-unix" {with-test} 18 "dune" {>= "1.0"} 19] 20available: os = "linux" | os = "macos" 21build: [ 22 ["dune" "build" "-p" name "-j" jobs] 23 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 24] 25depexts: ["linux-headers"] {os-distribution = "alpine"} 26dev-repo: "git+https://github.com/mirage/ocaml-vhd.git" 27synopsis: "Lwt interface to read/write VHD format data" 28description: """ 29A pure OCaml library to read and write 30[vhd](http://en.wikipedia.org/wiki/VHD_(file_format)) format data, plus a 31simple command-line tool which allows vhd files to be interrogated, 32manipulated, format-converted and streamed to and from files and remote 33servers. 34 35This package provides an Lwt compatible interface to the library. 36""" 37url { 38 src: 39 "https://github.com/mirage/ocaml-vhd/releases/download/v0.12.0/vhd-format-v0.12.0.tbz" 40 checksum: [ 41 "sha256=addddaa8a796583369eeafff60d143b963e5b1bde2f4a416acdd2752895c08f8" 42 "md5=73b88364f534dc0fcee23e6c4ceca8c7" 43 ] 44}