this repo has no description
1opam-version: "2.0" 2authors: [ "Mindy Preston" "Hannes Mehnert" "Anil Madhavapeddy" 3 "Thomas Gazagnaire" ] 4maintainer: [ "anil@recoil.org" "thomas@gazagnaire.org"] 5homepage: "https://github.com/mirage/mirage-fs-unix" 6dev-repo: "git+https://github.com/mirage/mirage-fs-unix.git" 7bug-reports: "https://github.com/mirage/mirage-fs-unix/issues" 8doc: "https://mirage.github.io/mirage-fs-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} 14] 15 16depends: [ 17 "dune" {>= "1.0"} 18 "ocaml" {>= "4.06.0"} 19 "cstruct" {>= "3.2.0" & < "6.1.0"} 20 "cstruct-lwt" 21 "mirage-kv" {>= "3.0.0"} 22 "mirage-fs" {>= "3.0.0"} 23 "lwt" 24 "rresult" {with-test} 25 "mirage-clock-unix" {with-test & >= "3.0.0"} 26 "alcotest" {with-test & >= "0.7.1" & < "1.4.0"} 27 "ptime" {with-test} 28] 29synopsis: "Passthrough filesystem for MirageOS on Unix" 30description: """ 31This is a pass-through Mirage filesystem to an underlying Unix directory. The 32interface is intended to support eventual privilege separation (e.g. via the 33Casper daemon in FreeBSD 11). 34 35The current version supports the `Mirage_fs.S` signature 36defined in the `mirage-fs` package. 37""" 38post-messages: [ 39 "This package will be retired in MirageOS 4.0. Please use mirage-kv (and mirage-kv-unix) instead." 40] 41url { 42 src: 43 "https://github.com/mirage/mirage-fs-unix/releases/download/v1.7.0/mirage-fs-unix-v1.7.0.tbz" 44 checksum: [ 45 "sha256=bc01f74d088f830ee2099930db46c46bb543409fe589ffe0c99f08c74e4a8b8c" 46 "sha512=ccf21640e26e995b2144d69f01885321b3122325295d315afb9dd0247ce45aaecba5abe3c78942749cda39b81f54428fd85ed3d6e2918427a0d8116fc664f098" 47 ] 48} 49flags: deprecated 50x-maintenance-intent: ["(none)"]