forked from mirage/mirage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmirage-runtime.opam
32 lines (30 loc) · 1.06 KB
/
mirage-runtime.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
opam-version: "2.0"
maintainer: ["[email protected]" "[email protected]"]
authors: ["Thomas Gazagnaire" "Anil Madhavapeddy" "Gabriel Radanne"
"Mindy Preston" "Thomas Leonard" "Nicolas Ojeda Bar"
"Dave Scott" "David Kaloper" "Hannes Mehnert" "Richard Mortier"]
homepage: "https://github.com/mirage/mirage"
bug-reports: "https://github.com/mirage/mirage/issues/"
dev-repo: "git+https://github.com/mirage/mirage.git"
license: "ISC"
tags: ["org:mirage" "org:xapi-project"]
doc: "https://mirage.github.io/mirage/"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.9.0"}
"ipaddr" {>= "5.0.0"}
"functoria-runtime" {= version}
"fmt" {>= "0.8.4"}
"logs"
"lwt" {>= "4.0.0"}
"alcotest" {with-test}
]
synopsis: "The base MirageOS runtime library, part of every MirageOS unikernel"
description: """
A bundle of useful runtime functions for applications built with MirageOS
"""