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.04.2"} 18 "dune" 19 "mirage-fs" {>= "1.0.0" & < "3.0.0"} 20 "mirage-kv" {>= "1.1.0"} 21 "mirage-kv-lwt" {< "2.0.0"} 22 "lwt" {>= "2.6.0"} 23 "cstruct" {>= "1.9.0"} 24 "cstruct-lwt" 25] 26synopsis: "MirageOS signatures for filesystem devices using Lwt" 27description: """ 28mirage-fs-lwt provides the `[Mirage_fs.S][fs]` and `[Mirage_fs_lwt.S]` signatures 29the MirageOS filesystem devices should implement. These are specialised to 30the Lwt concurrency library in this package. 31 32[fs]: http://mirage.github.io/mirage-fs/Mirage_fs.html 33[fslwt]: http://mirage.github.io/mirage-fs/Mirage_fs_lwt.html 34""" 35url { 36 src: 37 "https://github.com/mirage/mirage-fs/releases/download/v1.2.0/mirage-fs-v1.2.0.tbz" 38 checksum: [ 39 "sha256=7e628424ed8af95a08b2ecb21c58afa2d5241b9c6046b7d847ee08cf5f52cb6f" 40 "md5=eb6f213e61d3d7f7552b269b457d8f2b" 41 ] 42} 43flags: deprecated 44post-messages: [ "mirage-fs-lwt is deprecated, and has been folded into mirage-fs" ]