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" 8 9build: [ 10 [ "jbuilder" "subst" "-p" name ] {dev} 11 [ "jbuilder" "build" "-p" name "-j" jobs ] 12] 13 14depends: [ 15 "ocaml" 16 "jbuilder" {>= "1.0+beta10"} 17 "mirage-xen" {>= "2.2.0" & < "4.0.0"} 18 "lwt" {>= "2.4.3"} 19 "astring" 20 "parse-argv" 21] 22synopsis: "Library for reading MirageOS unikernel boot parameters in Xen" 23description: """ 24[![Build Status](https://travis-ci.org/mirage/mirage-bootvar-xen.svg)](https://travis-ci.org/mirage/mirage-bootvar-xen) 25 26Simple library for reading MirageOS unikernel boot parameters from Xen. 27 28To send boot parameters to the unikernel you can either add them as options in the "extra=" field in the .xl-file, like this: 29 30``` 31extra="key1=val1 key2=val2" 32``` 33 34.. or add them when starting the unikernel from the command line: 35 36``` 37sudo xl create unikernel.xl 'extra="key1=val1 key2=val2"' 38``` 39 40Bootvar was originally a part of [mirage-mimic](http://github.com/MagnusS/mirage-mimic), but is now released as a separate library.""" 41url { 42 src: 43 "https://github.com/mirage/mirage-bootvar-xen/releases/download/v0.5.0/mirage-bootvar-xen-0.5.0.tbz" 44 checksum: [ 45 "sha256=d76c5b40339877a2e96e5f4a04862fe8185bca316488d207bf42053164892fb1" 46 "md5=5982e82284f03a0ef44e1b020241c340" 47 ] 48} 49flags: deprecated 50post-messages: [ "mirage-bootvar-xen is deprecated, and has been folded into mirage-bootvar" ]