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+beta10"}
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[](https://travis-ci.org/mirage/ocaml-qcow) [](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.4/qcow-0.10.4.tbz"
65 checksum: [
66 "sha256=06834513c96f3167796c8358316b1a7e15c7c619f430b0d4dc322bf354370f00"
67 "md5=27e3a0ab128c53acc4da3e6ce5724e87"
68 ]
69}