this repo has no description
1opam-version: "2.0"
2maintainer: "dave@recoil.org"
3license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
4authors: [
5 "Vincent Hanquez"
6 "Thomas Gazagnaire"
7 "Dave Scott"
8 "Anil Madhavapeddy"
9 "Vincent Bernardoff"
10]
11homepage: "https://github.com/mirage/ocaml-xenstore"
12doc: "https://mirage.github.io/ocaml-xenstore/"
13bug-reports: "https://github.com/mirage/ocaml-xenstore/issues"
14depends: [
15 "ocaml" {>= "4.04.0" & < "5.0"}
16 "dune" {>= "1.0"}
17 "cstruct" {>= "3.2.0"}
18 "ppx_cstruct" {>= "3.2.0"}
19 "lwt"
20 "ounit" {with-test}
21]
22build: [
23 ["dune" "subst"] {dev}
24 ["dune" "build" "-p" name "-j" jobs]
25 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
26]
27dev-repo: "git+https://github.com/mirage/ocaml-xenstore.git"
28synopsis: "Xenstore protocol in pure OCaml"
29description: """
30This repo contains:
311. a xenstore client library, a merge of the Mirage and XCP ones
322. a xenstore server library
333. a xenstore server instance which runs under Unix with libxc
344. a xenstore server instance which runs on mirage.
35
36The client and the server libraries have sets of unit-tests.
37"""
38url {
39 src:
40 "https://github.com/mirage/ocaml-xenstore/releases/download/2.1.0/xenstore-2.1.0.tbz"
41 checksum: [
42 "sha256=c71134db8c77c86a1fb88e1a7706d395f8a938ee1e0df6deae17798fa7e333f0"
43 "md5=c3d52b5956e764434f19afb7f6f27f98"
44 ]
45}