this repo has no description
1opam-version: "2.0" 2maintainer: "dave@recoil.org" 3authors: ["David Scott"] 4license: "ISC" 5homepage: "https://github.com/mirage/ocaml-qcow" 6dev-repo: "git+https://github.com/mirage/ocaml-qcow.git" 7bug-reports: "https://github.com/mirage/ocaml-qcow/issues" 8doc: "https://mirage.github.io/ocaml-qcow" 9tags: [ 10 "org:mirage" 11] 12 13build: [ 14 ["jbuilder" "subst" "-p" name] {dev} 15 ["jbuilder" "build" "-p" name "-j" jobs] 16] 17depends: [ 18 "ocaml" {>= "4.03.0"} 19 "astring" 20 "cstruct" {< "4.0.0"} 21 "result" 22 "prometheus" 23 "mirage-types-lwt" {>= "3.0.0" & < "3.7.0"} 24 "lwt" 25 "mirage-block" {>= "0.2" & < "2.0.0"} 26 "mirage-block-lwt" 27 "mirage-block-unix" {>= "2.3.0"} 28 "mirage-time" {< "2.0.0"} 29 "mirage-time-lwt" 30 "sexplib" 31 "logs" 32 "fmt" {>= "0.8.2"} 33 "io-page-unix" {>= "2.0.0"} 34 "jbuilder" {>= "1.0+beta7"} 35 "ppx_tools" 36 "ppx_sexp_conv" 37 "ppx_type_conv" {build} 38 "ounit" {with-test} 39 "mirage-block-ramdisk" {with-test} 40 "ezjsonm" {with-test} 41 "nbd" {with-test & >= "2.0.1"} 42] 43synopsis: "Support for Qcow2 images" 44description: """ 45[![Build Status](https://travis-ci.org/mirage/ocaml-qcow.png?branch=master)](https://travis-ci.org/mirage/ocaml-qcow) [![Coverage Status](https://coveralls.io/repos/mirage/ocaml-qcow/badge.png?branch=master)](https://coveralls.io/r/mirage/ocaml-qcow?branch=master) 46 47Please read [the API documentation](https://mirage.github.io/ocaml-qcow/). 48 49Features 50-------- 51 52- supports `resize` 53- exposes sparseness information 54- produces files which can be understood by qemu (although not in 55 reverse since we don't support many features) 56 57Example 58------- 59 60In a top-level like utop: 61```ocaml""" 62url { 63 src: 64 "https://github.com/mirage/ocaml-qcow/releases/download/0.10.2/qcow-0.10.2.tbz" 65 checksum: [ 66 "sha256=2f5a57455b8cd13ce5435886d7a3dd3b0e92cad1cf20f635ae5c2c918c8b5034" 67 "md5=9e43d08a9599ac98619c8178e898baed" 68 ] 69}