this repo has no description
1opam-version: "2.0" 2authors: [ "Mindy Preston" "Hannes Mehnert" "Anil Madhavapeddy" 3 "Thomas Gazagnaire" "Stefanie Schirmer" ] 4maintainer: [ "anil@recoil.org" "thomas@gazagnaire.org" ] 5homepage: "https://github.com/mirage/mirage-kv-unix" 6dev-repo: "git+https://github.com/mirage/mirage-kv-unix.git" 7bug-reports: "https://github.com/mirage/mirage-kv-unix/issues" 8doc: "https://mirage.github.io/mirage-kv-unix/" 9tags: [ "org:mirage" ] 10build: [ 11 ["dune" "subst"] {dev} 12 ["dune" "build" "-p" name "-j" jobs] 13 ["dune" "runtest" "-p" name "-j" jobs] {with-test & os != "macos"} 14] 15 16depends: [ 17 "dune" {>= "1.0"} 18 "ocaml" {>= "4.05.0"} 19 "cstruct" {>= "3.2.0"} 20 "mirage-kv-lwt" {>= "1.0.0"} 21 "lwt" 22 "ptime" 23 "rresult" {with-test} 24 "mirage-clock-unix" {with-test & >= "2.0.0" & < "3.0.0"} 25 "alcotest" {with-test & >= "0.7.1" & < "1.4.0"} 26] 27synopsis: "Key-value store for MirageOS backed by Unix filesystem" 28description: """ 29This is a Mirage key-value store backed by an underlying Unix directory. 30 31The current version supports the `Mirage_kv_lwt.RO` and `Mirage_kv_lwt.RW` 32signatures defined in the `mirage-kv-lwt` package. 33""" 34url { 35 src: 36 "https://github.com/mirage/mirage-kv-unix/releases/download/v2.0.0/mirage-kv-unix-v2.0.0.tbz" 37 checksum: [ 38 "sha256=694b220774682805024722d47dbe662753ffa0d03e36d8f72541795ddae9fc95" 39 "md5=8db16acc7f3f2e8d3c71cc699329ca1e" 40 ] 41}