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" {>= "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 "io-page-unix" {with-test} 24 "conf-linux-libc-dev" {os = "linux"} 25] 26build: [ 27 ["dune" "subst"] {dev} 28 ["dune" "build" "-p" name "-j" jobs] 29 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 30] 31synopsis: "MirageOS disk block driver for Unix" 32description: """ 33Unix implementation of the Mirage `BLOCK_DEVICE` interface. 34 35This module provides raw I/O to files and block devices with as little 36caching as possible. 37""" 38url { 39 src: 40 "https://github.com/mirage/mirage-block-unix/releases/download/v2.12.1/mirage-block-unix-v2.12.1.tbz" 41 checksum: [ 42 "sha256=4fc0ccea3c06c654e149c0f0e1c2a6f19be4e3fe1afd293c6a0dba1b56b3b8c4" 43 "sha512=3a100b5641e5e2261af10e9720ecc32a1849085aaeec43ec5d983efe279c385dc813240272f68c08b51a1a09f041cb9ee2870fb176dc1c0858396bc6582657ad" 44 ] 45}