-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathxenstore_transport.opam
39 lines (38 loc) · 1.08 KB
/
xenstore_transport.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
opam-version: "2.0"
maintainer: "dave@recoil.org"
authors: [
"Christian Lindig"
"David Scott"
"Euan Harris"
"John Else"
"Jon Ludlam"
"Jonathan Davies"
"Marcello Seri"
"Si Beaumont"
"Thomas Sanders"
"Vincent Bernardoff"
]
license: "LGPL-2.1-only"
tags: ["org:mirage" "org:xapi-project"]
homepage: "http://github.com/xapi-project/ocaml-xenstore-clients"
doc: "http://xapi-project.github.io/ocaml-xenstore-clients"
bug-reports: "http://github.com/xapi-project/ocaml-xenstore-clients/issues"
depends: [
"ocaml" {>= "4.04.0"}
"ocamlfind" {build}
"dune" {build & >= "1.0"}
"lwt"
"xenstore" {>= "2.0.0"}
"ounit2" {with-test}
]
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
]
dev-repo: "git+http://github.com/xapi-project/ocaml-xenstore-clients.git"
synopsis: "low-level libraries for connecting to a xenstore service on a xen host."
description: """
These libraries contain the IO functions for communicating with a
xenstore service on a xen host. One subpackage deals with regular Unix
threads and another deals with Lwt co-operative threads.
"""