forked from xapi-project/xen-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vhd-format-lwt.opam
41 lines (39 loc) · 1.36 KB
/
vhd-format-lwt.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
name: "vhd-format-lwt"
synopsis: "Lwt interface to read/write VHD format data"
description: """\
A pure OCaml library to read and write
[vhd](http://en.wikipedia.org/wiki/VHD_(file_format)) format data, plus a
simple command-line tool which allows vhd files to be interrogated,
manipulated, format-converted and streamed to and from files and remote
servers.
This package provides an Lwt compatible interface to the library."""
maintainer: "[email protected]"
authors: ["Dave Scott" "Jon Ludlam"]
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
tags: ["org:mirage" "org:xapi-project"]
homepage: "https://github.com/mirage/ocaml-vhd"
doc: "https://mirage.github.io/ocaml-vhd/"
bug-reports: "https://github.com/mirage/ocaml-vhd/issues"
depends: [
"ocaml" {>= "4.02.3" & < "5.0.0"}
"cstruct" {< "6.1.0"}
"lwt" {>= "3.2.0"}
"mirage-block" {>= "2.0.1"}
"ounit2" {with-test}
"vhd-format" {= version}
"dune" {>= "1.0"}
"io-page" {with-test & >= "2.4.0"}
]
available: os = "linux" | os = "macos"
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depexts: ["linux-headers"] {os-distribution = "alpine"}
dev-repo: "git+https://github.com/xapi-project/xen-api.git"
url {
src:
"https://github.com/xapi-project/xen-api/archive/master.tar.gz"
}