this repo has no description
1opam-version: "2.0"
2maintainer: [ "yomimono <maintenance@identity-function.com>" ]
3authors: [ "yomimono <maintenance@identity-function.com>" ]
4homepage: "https://github.com/yomimono/chamelon"
5bug-reports: "https://github.com/yomimono/chamelon/issues"
6dev-repo: "git+https://github.com/yomimono/chamelon.git"
7license: "ISC"
8synopsis: "Subset of littlefs filesystem fulfilling MirageOS KV"
9description: """
10Chamelon implements a subset of the littlefs filesystem,
11which was originally designed for microcontroller use. It exposes
12an interface matching the Mirage_kv.RW module type and operates
13on top of a block device matching Mirage_block.S .
14
15It is extremely not POSIX."""
16
17build: [
18 [ "dune" "build" "-p" name "-j" jobs ]
19 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
20]
21
22depends: [
23 "ocaml" {>= "4.10.0"}
24 "dune" {>= "2.9.0" & < "3.7.0"}
25 "chamelon-unix" {= version & with-test}
26 "fpath" {>= "0.7.3" & with-test}
27 "alcotest" {>= "1.5.0" & with-test}
28 "alcotest-lwt" {>= "1.5.0" & with-test}
29 "mirage-block-unix" {>= "2.13.0" & with-test}
30 "bechamel" {>= "0.2.0" & with-test}
31 "bechamel-js" {>= "0.2.0" & with-test}
32 "checkseum" {>= "0.3.2"}
33 "cstruct" {>= "6.0.0"}
34 "digestif" {>= "1.0.0"}
35 "fmt" {>= "0.8.7"}
36 "logs" {>= "0.6.0"}
37 "lwt" {>= "5.3.0"}
38 "ptime" {>= "0.8.6"}
39 "mirage-block" {>= "3.0.0"}
40 "mirage-clock" {>= "2.0.0"}
41 "mirage-kv" {>= "4.0.1" & < "5.0.0"}
42 "mirage-logs" {>= "1.2.0"}
43 "ppx_cstruct"
44 "optint" {>= "0.0.4"}
45]
46available: arch != "arm32" & arch != "x86_32"
47url {
48 src:
49 "https://github.com/yomimono/chamelon/releases/download/v0.0.8/chamelon-0.0.8.tbz"
50 checksum: [
51 "sha256=6f02ee1ed4d73a28dec7e351c26caf0036846845f597f10fcff1da54f9edb58c"
52 "sha512=a5781e2b183f6c78c8ef289950476274e19d4d56df85b99d8887c5155f24e79d0dac440bbc395a072b9e39f7666d4fd27ee94e65aa0117646bf305511d93def6"
53 ]
54}
55x-commit-hash: "2481dfdc61a88ba1ac175761eab9b6a946a513c4"