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" 6doc: "https://mirage.github.io/mirage-block-unix/" 7bug-reports: "https://github.com/mirage/mirage-block-unix/issues" 8tags: "org:mirage" 9license: "ISC" 10depends: [ 11 "ocaml" {>= "4.03.0" & < "5.0"} 12 "dune" {>="1.0"} 13 "cstruct" {>= "3.0.0"} 14 "cstruct-lwt" 15 "cstruct" {<"3.4.0" & with-test} 16 "io-page" {<"2.0.0" & with-test} 17 "mirage-block-lwt" {>= "1.0.0"} 18 "rresult" 19 "io-page-unix" {>= "2.0.0"} 20 "uri" {>= "1.9.0"} 21 "logs" 22 "ounit" {with-test} 23 "diet" {with-test} 24 "fmt" {with-test} 25 "ppx_tools" {with-test} 26 "ppx_sexp_conv" {with-test} 27 "ppx_type_conv" {with-test} 28] 29build: [ 30 ["dune" "subst"] {dev} 31 ["dune" "build" "-p" name "-j" jobs] 32 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 33] 34depexts: ["linux-headers"] {os-distribution = "alpine"} 35synopsis: "MirageOS disk block driver for Unix" 36description: """ 37Unix implementation of the Mirage `BLOCK_DEVICE` interface. 38 39This module provides raw I/O to files and block devices with as little 40caching as possible. 41""" 42url { 43 src: 44 "https://github.com/mirage/mirage-block-unix/releases/download/v2.11.0/mirage-block-unix-v2.11.0.tbz" 45 checksum: [ 46 "sha256=63951ff15f4b9f6fbff6ac0c1a4a715c5f3e1f3d3712ceb8d7baf3e06a9b4f30" 47 "md5=f2a55e7b98bb49ebcd886f1878b76797" 48 ] 49}