forked from mirage/ocaml-fat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fat-filesystem.opam
40 lines (39 loc) · 1.13 KB
/
fat-filesystem.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
opam-version: "2.0"
maintainer: "[email protected]"
authors: ["Dave Scott" "Anil Madhavapeddy"]
tags: ["org:mirage" "org:xapi-project"]
homepage: "https://github.com/mirage/ocaml-fat"
doc: "https://mirage.github.io/ocaml-fat/"
bug-reports: "https://github.com/mirage/ocaml-fat/issues"
license: "ISC"
depends: [
"ocaml" {>= "4.06.0"}
"dune" {>= "1.0"}
"cstruct" {>= "6.0.0"}
"ppx_cstruct"
"rresult"
"lwt" {>= "2.4.3"}
"mirage-block" {>= "3.0.0"}
"mirage-block-unix" {>= "2.13.0"}
"mirage-kv" {>= "4.0.0"}
"mirage-block-combinators" {with-test}
"io-page" {>= "2.4.0"}
"re" {>= "1.7.2"}
"cmdliner" {>= "1.1.0"}
"astring"
"fmt" {>= "0.8.7"}
"alcotest" {with-test}
]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name] {with-test}
]
dev-repo: "git+https://github.com/mirage/ocaml-fat.git"
synopsis: "Pure OCaml implementation of the FAT filesystem"
description: """
This library has two purposes:
1. to allow the easy preparation of bootable disk images
containing [mirage](https://mirage.io) kernels
2. to provide a simple key=value layer for MirageOS applications
"""