this repo has no description
1opam-version: "2.0"
2maintainer: [ "Reynir Björnsson <reynir@reynir.dk>" ]
3authors: [ "Reynir Björnsson <reynir@reynir.dk>" ]
4homepage: "https://git.robur.coop/reynir/oneffs"
5bug-reports: "https://git.robur.coop/reynir/oneffs/issues"
6dev-repo: "git+https://git.robur.coop/reynir/oneffs.git"
7license: "ISC"
8synopsis: "One-file filesystem is a filesystem for storing a single unnamed file"
9description: """
10One-file filesystem is a filesystem for storing a single unnamed file. It is
11suitable for storing data that may be lost on updates. For example a cache of
12pre-computed cryptographic checksums that are slow to compute, but that we
13would rather recompute than have stale checksums.
14CRC32 checksums are used to ensure integrity.
15"""
16
17build: [
18 [ "dune" "subst" ] { dev }
19 [ "dune" "build" "-p" name "-j" jobs ]
20 [ "dune" "runtest" "-p" name "-j" jobs ] { with-test }
21]
22depends: [
23 "dune" {>= "3.4"}
24 "ocaml" {>= "4.08.0"}
25 "mirage-block" {>= "3.0.0"}
26 "lwt" {>= "5.3.0"}
27 "cstruct" {>= "6.0.0"}
28 "checkseum"
29 "optint" {>= "0.0.5"}
30]
31url {
32 src: "https://github.com/reynir/oneffs/releases/download/v0.1.0/oneffs-0.1.0.tbz"
33 checksum: [
34 "sha256=cfee53b51af1d16ef1d4016a81d2012dc90b92817d2dc7e77503a6879100b3c1"
35 "sha512=a7260e90c501257f38fc7d39bee0495bc06f4af1d6f4437f1f3566d379215c8f870dddbd94a37d355aea02aeb7ab3d27cc2fe502d97b292ed4f00c411a8165a2"
36 ]
37}
38x-commit-hash: "fe04fdb4f578aab8fb7bd436dcf21faeee0c9d19"