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.06.0" & < "5.0"} 12 "dune" {>="1.0"} 13 "cstruct" {>= "3.0.0" & < "6.1.0"} 14 "cstruct-lwt" 15 "mirage-block" {>= "2.0.0" & < "3.0.0"} 16 "rresult" 17 "io-page-unix" {>= "2.0.0"} 18 "uri" {>= "1.9.0"} 19 "logs" 20 "ounit" {with-test} 21 "diet" {with-test & >= "0.4"} 22 "fmt" {with-test} 23 "conf-linux-libc-dev" {os = "linux"} 24] 25build: [ 26 ["dune" "subst"] {dev} 27 ["dune" "build" "-p" name "-j" jobs] 28] 29synopsis: "MirageOS disk block driver for Unix" 30description: """ 31Unix implementation of the Mirage `BLOCK_DEVICE` interface. 32 33This module provides raw I/O to files and block devices with as little 34caching as possible. 35""" 36url { 37 src: 38 "https://github.com/mirage/mirage-block-unix/releases/download/v2.12.0/mirage-block-unix-v2.12.0.tbz" 39 checksum: [ 40 "sha256=063b9a312579dc4a1318b4ae1e64a4224014ddcf2d7357aec79f6556cde2fd68" 41 "sha512=45bab3c611336e8acf45565b48a23f02d3cfe2c50056bb2f97a43a349d3416d4b489377c1622aa951cfcdab54ceaa9f1a1fd6d800e1d3fca2de2c8a09ca352e8" 42 ] 43}