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" & < "6.1.0"}
12 "ppx_cstruct"
13 "rresult"
14 "lwt" {>= "2.4.3"}
15 "mirage-fs" {>= "3.0.0"}
16 "mirage-block" {>= "2.0.0"}
17 "mirage-block-unix" {>= "2.5.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 filesystem layer for MirageOS applications
38"""
39url {
40 src:
41 "https://github.com/mirage/ocaml-fat/releases/download/v0.14.0/fat-filesystem-v0.14.0.tbz"
42 checksum: [
43 "sha256=07312d63c0b215dc1db1036db7493500fe5fe20cad05f189a74b5c51e85d8af5"
44 "sha512=856514a926d451c74756b70910f9e06aa7b55a85b5e3c1306ce4de8b3f56b477332f9f81ea85b71a591eb0cdbc540debaa2d2f418fe07aa316abb68c4d314b1c"
45 ]
46}