this repo has no description
1opam-version: "2.0"
2maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>"
3authors: "Spiros Eliopoulos <spiros@inhabitedtype.com>"
4homepage: "https://github.com/inhabitedtype/ocaml-webmachine"
5bug-reports: "https://github.com/inhabitedtype/ocaml-webmachine/issues"
6license: "BSD-3-Clause"
7dev-repo: "git+https://github.com/inhabitedtype/ocaml-webmachine.git"
8build: [
9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
10 ["ocaml" "setup.ml" "-build"]
11 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test}
12 ["ocaml" "setup.ml" "-build"] {with-test}
13 ["ocaml" "setup.ml" "-test"] {with-test}
14 ["ocaml" "setup.ml" "-doc"] {with-doc}
15]
16install: ["ocaml" "setup.ml" "-install"]
17remove: ["ocamlfind" "remove" "webmachine"]
18depends: [
19 "ocaml" {>= "4.02" & < "5.0"}
20 "calendar" {>= "2.03.2"}
21 "cohttp" {>= "0.21.0"}
22 "dispatch" {>= "0.3.0" & < "0.5.0"}
23 "ocamlfind" {build}
24 "ocamlbuild" {build}
25 "ounit" {with-test & >= "1.0.2"}
26 "re" {>= "1.3.0"}
27]
28synopsis: "A REST toolkit for OCaml"
29description: """
30OCaml webmachine is a layer on top of cohttp that implements a
31state-machine-based HTTP request processor. It's particularly
32well-suited for writing RESTful APIs. As the name suggests, this is an
33OCaml port of the webmachine project."""
34flags: light-uninstall
35url {
36 src:
37 "https://github.com/inhabitedtype/ocaml-webmachine/archive/0.4.0.tar.gz"
38 checksum: [
39 "sha256=d0d20e41bcdf110cbabaac913c39d3a7b99002ceab403db7a76872558fec328d"
40 "md5=362600d82e9aeb4808766baa7a3febde"
41 ]
42}