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 ["dune" "subst"] {dev} 13 ["dune" "build" "-p" name "-j" jobs] 14] 15 16depends: [ 17 "ocaml" {>= "4.05.0"} 18 "dune" 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 using Lwt" 26description: """ 27mirage-fs-lwt provides the `[Mirage_fs.S][fs]` and `[Mirage_fs_lwt.S]` signatures 28the MirageOS filesystem devices should implement. These are specialised to 29the Lwt concurrency library in this package. 30 31[fs]: http://mirage.github.io/mirage-fs/Mirage_fs.html 32[fslwt]: http://mirage.github.io/mirage-fs/Mirage_fs_lwt.html 33""" 34url { 35 src: 36 "https://github.com/mirage/mirage-fs/releases/download/v2.0.0/mirage-fs-v2.0.0.tbz" 37 checksum: [ 38 "sha256=09a2c0cfc597d6753b853e08f1d59c58db914afa9251b9bd76f0715caecf7925" 39 "md5=b391694a35550ca52439562a31577bb6" 40 ] 41} 42flags: deprecated 43post-messages: [ "mirage-fs-lwt is deprecated, and has been folded into mirage-fs" ] 44x-maintenance-intent: ["(none)"]