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" 6bug-reports: "https://github.com/mirage/mirage-block-unix/issues" 7tags: "org:mirage" 8license: "ISC" 9 10build: [ 11 ["jbuilder" "subst" "-p" name] {dev} 12 ["jbuilder" "build" "-p" name "-j" jobs] 13 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 14] 15depends: [ 16 "ocaml" {>= "4.03.0" & < "5.0"} 17 "jbuilder" {>= "1.0+beta10"} 18 "cstruct" {>= "3.0.0"} 19 "cstruct" {<"3.4.0" & with-test} 20 "io-page" {<"2.0.0" & with-test} 21 "cstruct-lwt" 22 "mirage-block-lwt" {>= "1.0.0"} 23 "rresult" 24 "io-page-unix" {>= "2.0.0"} 25 "uri" {>= "1.9.0"} 26 "logs" 27 "ounit" {with-test} 28 "fmt" {with-test} 29] 30depexts: [ 31 ["linux-libc-dev"] {os-family = "debian"} 32 ["linux-glibc-devel"] {os-family = "suse" | os-family = "opensuse"} 33 ["kernel-headers"] {os-distribution = "rhel"} 34 ["kernel-headers"] {os-distribution = "centos"} 35 ["linux-headers"] {os-distribution = "alpine"} 36] 37synopsis: "MirageOS disk block driver for Unix" 38description: """ 39Unix implementation of the Mirage `BLOCK_DEVICE` interface. 40 41This module provides raw I/O to files and block devices with as little 42caching as possible. 43 44E-mail: <mirageos-devel@lists.xenproject.org>""" 45url { 46 src: 47 "https://github.com/mirage/mirage-block-unix/releases/download/v2.9.0/mirage-block-unix-2.9.0.tbz" 48 checksum: [ 49 "sha256=b2fb8dc405a4e2e21102de5b6af22247e13e1bc82fd2f2f5ecc7c2804d84d00c" 50 "md5=3b494e1e3394ed1e20d19abdfcf76363" 51 ] 52}