this repo has no description
1opam-version: "2.0"
2synopsis: "Sinatra like web toolkit based on Lwt + Cohttp"
3description:
4 "Opium_kernel is the Unix indpendent core of Opium. Useful for extremely portable environments such as mirage."
5maintainer: ["Rudi Grinberg <rudi.grinberg@gmail>"]
6authors: ["Rudi Grinberg"]
7license: "MIT"
8homepage: "https://github.com/rgrinberg/opium"
9doc: "https://rgrinberg.github.io/opium/"
10bug-reports: "https://github.com/rgrinberg/opium/issues"
11depends: [
12 "ocaml" {>= "4.04.1"}
13 "dune" {>= "1.11"}
14 "hmap"
15 "cohttp"
16 "cohttp-lwt"
17 "lwt"
18 "fieldslib"
19 "sexplib"
20 "ppx_fields_conv"
21 "ppx_sexp_conv"
22 "re"
23 "alcotest" {with-test}
24]
25build: [
26 ["dune" "subst"] {dev}
27 [
28 "dune"
29 "build"
30 "-p"
31 name
32 "-j"
33 jobs
34 "@install"
35 "@runtest" {with-test}
36 "@doc" {with-doc}
37 ]
38]
39dev-repo: "git+https://github.com/rgrinberg/opium.git"
40url {
41 src:
42 "https://github.com/rgrinberg/opium/releases/download/0.18.0/opium-0.18.0.tbz"
43 checksum: [
44 "sha256=f80ccf9c36665c2db240482eeb0cc968a9e66ad2b7a811298658df52f84b5e28"
45 "sha512=345585719e58b8a08b45244123f03e094a9c67ad8c2ee903dac4d8b646703cfea74ab87a82f43cf6113ad394c296bddb4bb5fbd910ed8511693b5ec6867baece"
46 ]
47}