this repo has no description
1opam-version: "2.0"
2maintainer: "anil@recoil.org"
3authors: ["Anil Madhavapeddy" "Thomas Gazagnaire"]
4homepage: "https://github.com/mirage/ocaml-crunch"
5bug-reports: "https://github.com/mirage/ocaml-crunch/issues"
6doc: "https://mirage.github.io/ocaml-crunch/"
7license: "ISC"
8dev-repo: "git+https://github.com/mirage/ocaml-crunch.git"
9tags: ["org:mirage" "org:xapi-project"]
10
11depends: [
12 "ocaml" {>= "4.04.2"}
13 "cmdliner"
14 "dune" {>= "1.0"}
15 "cstruct" {with-test}
16 "lwt" {with-test}
17 "mirage-kv-lwt" {with-test & >= "1.0.0" & < "2.0.0"}
18 "io-page-unix" {with-test}
19]
20build: [
21 ["dune" "subst"] {dev}
22 ["dune" "build" "-p" name "-j" jobs]
23 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
24]
25synopsis: "Convert a filesystem into a static OCaml module"
26description: """
27`ocaml-crunch` takes a directory of files and compiles them into a standalone
28OCaml module which serves the contents directly from memory. This can be
29convenient for libraries that need a few embedded files (such as a web server)
30and do not want to deal with all the trouble of file configuration.
31"""
32url {
33 src:
34 "https://github.com/mirage/ocaml-crunch/releases/download/v2.2.0/crunch-v2.2.0.tbz"
35 checksum: [
36 "sha256=349cfdd19b8e106e101b1ddd89253a57c15306438a351b86f0ba376948ee49c5"
37 "md5=a5490fc009a8ee34c93583b16a4ca89f"
38 ]
39}