this repo has no description
1opam-version: "2.0"
2authors: "Dave Scott <dave@recoil.org>"
3maintainer: "dave@recoil.org"
4homepage: "https://github.com/mirage/mirage-block-unix"
5dev-repo: "git+https://github.com/mirage/mirage-block-unix.git"
6bug-reports: "https://github.com/mirage/mirage-block-unix/issues"
7tags: "org:mirage"
8license: "ISC"
9
10build: [
11 ["jbuilder" "subst" "-p" name] {dev}
12 ["jbuilder" "build" "-p" name "-j" jobs]
13 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
14]
15depends: [
16 "ocaml" {>= "4.03.0" & < "5.0"}
17 "jbuilder" {>= "1.0+beta10"}
18 "cstruct" {>= "3.0.0"}
19 "cstruct-lwt"
20 "mirage-block-lwt" {>= "1.0.0"}
21 "rresult"
22 "io-page-unix" {>= "2.0.0"}
23 "cstruct" {<"3.4.0" & with-test}
24 "io-page" {<"2.0.0" & with-test}
25 "uri" {>= "1.9.0"}
26 "logs"
27 "ounit" {with-test}
28 "diet" {with-test}
29 "fmt" {with-test}
30 "ppx_tools" {with-test}
31 "ppx_sexp_conv" {with-test}
32 "ppx_type_conv" {with-test}
33]
34depexts: [
35 ["linux-libc-dev"] {os-family = "debian"}
36 ["linux-glibc-devel"] {os-family = "suse" | os-family = "opensuse"}
37 ["kernel-headers"] {os-distribution = "rhel"}
38 ["kernel-headers"] {os-distribution = "centos"}
39 ["linux-headers"] {os-distribution = "alpine"}
40]
41synopsis: "MirageOS disk block driver for Unix"
42description: """
43Unix implementation of the Mirage `BLOCK_DEVICE` interface.
44
45This module provides raw I/O to files and block devices with as little
46caching as possible.
47
48E-mail: <mirageos-devel@lists.xenproject.org>"""
49url {
50 src: "https://github.com/mirage/mirage-block-unix/archive/v2.10.0.tar.gz"
51 checksum: [
52 "sha256=fee7084d42f3439acf47b5fdf0c93a6da29e7cbaec7c001efe6f4899c3220d8c"
53 "md5=809563842d4660418ee803224e07c601"
54 ]
55}