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/" 6dev-repo: "git+https://github.com/mirage/mirage-bootvar-xen.git" 7license: "ISC" 8build: [ 9 ["ocaml" "setup.ml" "-configure" "--disable-tests"] 10 ["ocaml" "setup.ml" "-build"] 11 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test} 12 ["ocaml" "setup.ml" "-build"] {with-test} 13 ["ocaml" "setup.ml" "-test"] {with-test} 14] 15install: [make "install"] 16remove: [ 17 ["ocamlfind" "remove" "mirage-bootvar"] 18] 19depends: [ 20 "ocaml" 21 "mirage-xen" {>= "2.2.0" & < "4.0.0"} 22 "mirage-types" {< "3.0.0"} 23 "ipaddr" 24 "astring" 25 "ounit" 26] 27synopsis: "Library for reading MirageOS unikernel boot parameters in Xen" 28description: """ 29This 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. 30 31Boot 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`.""" 32flags: [ light-uninstall deprecated ] 33url { 34 src: "https://github.com/mirage/mirage-bootvar-xen/archive/v0.3.2.tar.gz" 35 checksum: [ 36 "sha256=62840741b6815494c4c7cebc7de8fb7c6822742acf971d9b7b10866d85f3ce22" 37 "md5=379fcf0df9377329e82ffcfa2119daa1" 38 ] 39} 40post-messages: [ "mirage-bootvar-xen is deprecated, and has been folded into mirage-bootvar" ]