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.1.tar.gz"
38 checksum: [
39 "sha256=7e7681f987b39f7f7325d117dbc7aa5521390c14a5556093642515dadb9a49cf"
40 "md5=7c9df2e0cba7f1c0c1d9d5f24fd059bc"
41 ]
42}