this repo has no description
1opam-version: "2.0" 2maintainer: "dave@recoil.org" 3authors: ["Dave Scott" "Anil Madhavapeddy"] 4tags: ["org:mirage" "org:xapi-project"] 5homepage: "https://github.com/mirage/ocaml-fat" 6doc: "https://mirage.github.io/ocaml-fat/" 7bug-reports: "https://github.com/mirage/ocaml-fat/issues" 8depends: [ 9 "ocaml" {>= "4.06.0"} 10 "dune" {>= "1.0"} 11 "cstruct" {>= "3.0.0"} 12 "ppx_cstruct" 13 "rresult" 14 "lwt" {>= "2.4.3"} 15 "mirage-block" {>= "2.0.0"} 16 "mirage-block-unix" {>= "2.5.0" & < "2.13.0"} 17 "mirage-kv" {< "5.0.0"} 18 "mirage-block-combinators" {with-test} 19 "io-page-unix" {>= "2.0.0"} 20 "io-page" {>= "2.0.0"} 21 "re" {>= "1.7.2"} 22 "cmdliner" 23 "astring" 24 "alcotest" {with-test} 25] 26build: [ 27 ["dune" "subst"] {dev} 28 ["dune" "build" "-p" name "-j" jobs] 29 ["dune" "runtest" "-p" name] {with-test} 30] 31dev-repo: "git+https://github.com/mirage/ocaml-fat.git" 32synopsis: "Pure OCaml implementation of the FAT filesystem" 33description: """ 34This library has two purposes: 351. to allow the easy preparation of bootable disk images 36 containing [mirage](https://mirage.io) kernels 372. to provide a simple key=value layer for MirageOS applications 38""" 39url { 40 src: 41 "https://github.com/mirage/ocaml-fat/archive/v0.15.0.tar.gz" 42 checksum: [ 43 "sha256=a77048fda53d25f463f729b37e9264b72db219fdc62ab0488c1539618bb40400" 44 "sha512=d68ed3a9394fbba8bf2cb7555206bcd2a912c5fb6f1a5a18f26b217f3fc2148c42f94b0163f682173ff5db19aa145dcfc003bfdb9ba74f5a757bd372fc45ddcb" 45 ] 46}