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 "mirage-block-lwt" {>= "1.0.0"} 16 "rresult" 17 "io-page-unix" {>= "2.0.0"} 18 "uri" {>= "1.9.0"} 19 "logs" 20] 21build: [ 22 ["dune" "subst"] {dev} 23 ["dune" "build" "-p" name "-j" jobs] 24] 25depexts: ["linux-headers"] {os-distribution = "alpine"} 26synopsis: "MirageOS disk block driver for Unix" 27description: """ 28Unix implementation of the Mirage `BLOCK_DEVICE` interface. 29 30This module provides raw I/O to files and block devices with as little 31caching as possible. 32""" 33url { 34 src: 35 "https://github.com/mirage/mirage-block-unix/releases/download/v2.11.2/mirage-block-unix-v2.11.2.tbz" 36 checksum: [ 37 "sha256=eb2a9896ca3eeae343891af1dee1031d658ee18843b437ea6a6900da8071a838" 38 "sha512=090b6d8e6951069048bad7b39f4887d5ea44cf17745d1d90d017232032d99d4dea8e0d9ed8a62efbb35e2e7e9905efec1ef296dd7d576c4c2e09c0ab9e63ec75" 39 ] 40}