-
Notifications
You must be signed in to change notification settings - Fork 21
/
mirage-xen.opam
41 lines (40 loc) · 1.11 KB
/
mirage-xen.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
39
40
41
opam-version: "2.0"
maintainer: "[email protected]"
authors: "The MirageOS team"
homepage: "https://github.com/mirage/mirage-xen"
bug-reports: "https://github.com/mirage/mirage-xen/issues/"
dev-repo: "git+https://github.com/mirage/mirage-xen.git"
doc: "https://mirage.github.io/mirage-xen/"
license: "ISC"
tags: ["org:mirage"]
build: [
[ "dune" "subst" ] {dev}
[ "dune" "build" "-p" name "-j" jobs ]
]
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.7.0"}
"cstruct" {>= "1.0.1"}
"lwt" {>= "2.4.3"}
"shared-memory-ring-lwt"
"xenstore" {>= "1.2.5"}
"lwt-dllist"
"io-page" {>= "2.4.0"}
"mirage-runtime" {>= "4.0"}
"logs"
"fmt" {>= "0.8.5"}
"bheap" {>= "2.0.0"}
"duration"
"metrics"
"metrics-lwt" {>= "0.2.0"}
]
available: [
(arch = "x86_64" ) &
(os = "linux" | os = "freebsd" | os = "openbsd")
]
synopsis: "Xen core platform libraries for MirageOS"
description: """
This package provides the MirageOS `OS` library for
Xen targets, which handles the main loop and timers. It also provides
the low level C startup code and C stubs required by the OCaml code.
"""