this repo has no description
1opam-version: "2.0"
2maintainer: "Vincent Bernardoff <vb@luminar.eu.org>"
3authors: "Vincent Bernardoff <vb@luminar.eu.org>"
4homepage: "https://github.com/vbmithr/ocaml-wamp"
5bug-reports: "https://github.com/vbmithr/ocaml-wamp/issues"
6license: "ISC"
7dev-repo: "git+https://github.com/vbmithr/ocaml-wamp.git"
8build: [
9 "ocaml"
10 "pkg/pkg.ml"
11 "build"
12 "--pinned"
13 "%{pinned}%"
14 "--with-yojson"
15 "%{yojson:installed}%"
16 "--with-msgpck"
17 "%{msgpck:installed}%"
18]
19depends: [
20 "ocaml" {>= "4.01.0"}
21 "ocamlfind" {build}
22 "ocamlbuild" {build}
23 "topkg" {build}
24 "result"
25 "uri"
26]
27depopts: ["yojson" "msgpck"]
28conflicts: [
29 "yojson" {>= "2.0.0"}
30]
31synopsis: "Web Application Messaging Protocol (WAMP) library"
32description: """
33WAMP is a routed protocol that provides two messaging patterns:
34Publish & Subscribe and routed Remote Procedure Calls. It is intended
35to connect application components in distributed applications. WAMP
36uses WebSocket as its default transport, but can be transmitted via
37any other protocol that allows for ordered, reliable, bi-directional,
38and message-oriented communications."""
39url {
40 src: "https://github.com/vbmithr/ocaml-wamp/archive/1.1.tar.gz"
41 checksum: [
42 "sha256=9344ebb42d60d7e370f1981ad7933db7c060bd3228ac212e3ab0253bd904f878"
43 "md5=8bde63fa1d63370da36248501eb3b285"
44 ]
45}