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] 25conflicts: [ "io-page" {>="2.0.0" & with-test} ] 26depexts: ["linux-headers"] {os-distribution = "alpine"} 27synopsis: "MirageOS disk block driver for Unix" 28description: """ 29Unix implementation of the Mirage `BLOCK_DEVICE` interface. 30 31This module provides raw I/O to files and block devices with as little 32caching as possible. 33""" 34url { 35 src: 36 "https://github.com/mirage/mirage-block-unix/releases/download/v2.11.1/mirage-block-unix-v2.11.1.tbz" 37 checksum: [ 38 "sha256=43eb60e48bb362bdf2ce16b240d88c707d002de2214331ba7433a7d99f2832cd" 39 "md5=95d3b8e9bd3c44c35ef454d38727afbd" 40 ] 41}