this repo has no description
1opam-version: "2.0"
2maintainer: "dave@recoil.org"
3authors: ["David Scott"]
4license: "ISC"
5homepage: "https://github.com/mirage/mirage-block-ramdisk"
6dev-repo: "git+https://github.com/mirage/mirage-block-ramdisk.git"
7bug-reports: "https://github.com/mirage/mirage-block-ramdisk/issues"
8tags: ["org:mirage"]
9build: [
10 [make "PREFIX=%{prefix}%"]
11 ["ocaml" "setup.ml" "-doc"] {with-doc}
12]
13install: [make "PREFIX=%{prefix}%" "install"]
14remove: [
15 ["ocamlfind" "remove" "mirage-block-ramdisk"]
16]
17depends: [
18 "ocaml" {>= "4.02.0"}
19 "base-bytes"
20 "cstruct" {< "6.1.0"}
21 "mirage-types-lwt" {< "3.0.0"}
22 "lwt"
23 "ocamlfind" {build}
24 "oasis" {build}
25 "ocamlbuild" {build}
26]
27synopsis: "In-memory block device (\"Ramdisk\") for Mirage"
28description: """
29This is an implementation of the Mirage `V1_LWT.BLOCK` signature
30backed by an in-heap Map. This library supports
31
32- `read`/`write`
33- dynamic `resize` (i.e. device truncation and extension)
34- sparseness querying"""
35flags: light-uninstall
36url {
37 src: "https://github.com/mirage/mirage-block-ramdisk/archive/v0.2.tar.gz"
38 checksum: [
39 "sha256=d6026fda00a43e9b55fe74a20f02f40b48f5d50f15ea32fa1c9fde7ac700767d"
40 "md5=4dcb1f9be08df2914b6ecb2438338312"
41 ]
42}