this repo has no description
1opam-version: "2.0"
2maintainer: "Magnus Skjegstad <magnus@skjegstad.com>"
3authors: "Magnus Skjegstad <magnus@skjegstad.com>"
4homepage: "https://github.com/mirage/mirage-bootvar-xen"
5bug-reports: "https://github.com/mirage/mirage-bootvar-xen/issues/"
6license: "ISC"
7dev-repo: "git+https://github.com/mirage/mirage-bootvar-xen.git"
8build: [make]
9install: [make "install"]
10remove: ["ocamlfind" "remove" "mirage-bootvar"]
11depends: [
12 "ocaml"
13 "mirage-xen" {>= "2.2.0" & < "4.0.0"}
14 "mirage-types" {< "3.0.0"}
15 "ipaddr"
16 "re"
17]
18synopsis: "Library for reading MirageOS unikernel boot parameters in Xen"
19description: """
20This library contains functions for reading parameters passed as boot parameter to a unikernel in Xen. The parameters can be passed as key/value pairs in the `extra=` field in an .xl-file or on the command line when starting a unikernel with the `xl` utility.
21
22Boot parameters are read from the VM's `cmdline` key in Xenstore. If this key does not exist the parameters will be read from `OS.Start_info.cmd_line`."""
23flags: [ light-uninstall deprecated ]
24url {
25 src: "https://github.com/mirage/mirage-bootvar-xen/archive/0.3.1.tar.gz"
26 checksum: [
27 "sha256=4ea61b5cac6eb385fe94d6c1322ba2db8d7f82df747ac9faca9c9944efde597f"
28 "md5=d21a6a8b022523a76935e4393d75edbd"
29 ]
30}
31post-messages: [ "mirage-bootvar-xen is deprecated, and has been folded into mirage-bootvar" ]