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 "fmt" 20 "mirage-device" {>= "1.0.0" & < "2.0.0"} 21] 22synopsis: "MirageOS signatures for filesystem devices" 23description: """ 24mirage-fs provides the `[Mirage_fs.S][fs]` and `[Mirage_fs_lwt.S]` signatures 25the MirageOS filesystem devices should implement. 26 27[fs]: http://mirage.github.io/mirage-fs/Mirage_fs.html 28[fslwt]: http://mirage.github.io/mirage-fs/Mirage_fs_lwt.html 29""" 30url { 31 src: 32 "https://github.com/mirage/mirage-fs/releases/download/v2.0.0/mirage-fs-v2.0.0.tbz" 33 checksum: [ 34 "sha256=09a2c0cfc597d6753b853e08f1d59c58db914afa9251b9bd76f0715caecf7925" 35 "md5=b391694a35550ca52439562a31577bb6" 36 ] 37} 38flags: deprecated 39post-messages: [ "mirage-fs is deprecated, and has been superseeded by mirage-kv" ]