this repo has no description
1opam-version: "2.0"
2synopsis: "Handle boot-time arguments for Xen platform"
3description: """
4Simple library for reading MirageOS unikernel boot parameters from Xen.
5
6To send boot parameters to the unikernel you can either add them as options in the "extra=" field in the .xl-file.
7"""
8
9maintainer: "Magnus Skjegstad <magnus@skjegstad.com>"
10authors: "Magnus Skjegstad <magnus@skjegstad.com>"
11homepage: "https://github.com/mirage/mirage-bootvar-xen"
12bug-reports: "https://github.com/mirage/mirage-bootvar-xen/issues/"
13dev-repo: "git+https://github.com/mirage/mirage-bootvar-xen.git"
14doc: "https://mirage.github.io/mirage-bootvar-xen/"
15license: "ISC"
16
17build: [
18 [ "dune" "subst" ] {dev}
19 [ "dune" "build" "-p" name "-j" jobs ]
20]
21
22depends: [
23 "dune" {>= "1.0"}
24 "mirage-xen" {>= "4.0.0" & < "5.0.0"}
25 "lwt" {>= "2.4.3"}
26 "astring"
27 "parse-argv"
28 "ocaml" {>= "4.04.2"}
29]
30url {
31 src:
32 "https://github.com/mirage/mirage-bootvar-xen/releases/download/v0.6.0/mirage-bootvar-xen-v0.6.0.tbz"
33 checksum: [
34 "sha256=0e3773a82ef8bf0460137379b02500610c7d966832727a4a23dec18c700dcb5c"
35 "sha512=eed49d1190755e90afbfc9b7845090a21991e5cfaf84786130d9cef5150e6e08ba7f9cfbde888df5d35a02b355d65ae9da380dd6efc81a39892c9d8e405c16cf"
36 ]
37}
38flags: deprecated
39post-messages: [ "mirage-bootvar-xen is deprecated, and has been folded into mirage-bootvar" ]