this repo has no description
1opam-version: "2.0" 2maintainer: "Thomas Gazagnaire <thomas@gazagnaire.org>" 3authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 4homepage: "https://github.com/mirage/mirage-fs" 5doc: "https://mirage.github.io/mirage-fs/" 6license: "ISC" 7dev-repo: "git+https://github.com/mirage/mirage-fs.git" 8bug-reports: "https://github.com/mirage/mirage-fs/issues" 9tags: ["org:mirage"] 10 11build: [ 12 ["jbuilder" "subst" "-p" name] {dev} 13 ["jbuilder" "build" "-p" name "-j" jobs] 14] 15 16depends: [ 17 "ocaml" {>= "4.03.0"} 18 "jbuilder" {>= "1.0+beta10"} 19 "mirage-fs" {>= "1.0.0" & < "3.0.0"} 20 "mirage-kv-lwt" {< "2.0.0"} 21 "lwt" 22 "cstruct" {>= "1.9.0"} 23 "cstruct-lwt" 24] 25synopsis: "MirageOS signatures for filesystem devices" 26description: """ 27[![Build Status](https://travis-ci.org/mirage/mirage-fs.svg?branch=master)](https://travis-ci.org/mirage/mirage-fs) 28 29mirage-fs provides the `[Mirage_fs.S][fs]` and `[Mirage_fs_lwt.S]` signatures 30the MirageOS filesystem devices should implement. 31 32[fs]: http://mirage.github.io/mirage-fs/Mirage_fs.html 33[fslwt]: http://mirage.github.io/mirage-fs/Mirage_fs_lwt.html""" 34url { 35 src: 36 "https://github.com/mirage/mirage-fs/releases/download/v1.1.1/mirage-fs-1.1.1.tbz" 37 checksum: [ 38 "sha256=18922f2f1db28378f62d0ac492202419b161348a058cb567618aa10503992d92" 39 "md5=8e8f51347c4fec027025c76eda4ff6b5" 40 ] 41} 42flags: deprecated 43post-messages: [ "mirage-fs-lwt is deprecated, and has been folded into mirage-fs" ]