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" {>= "5.0.0" & < "6.0.0"} 25 "lwt" {>= "2.4.3"} 26 "astring" 27 "parse-argv" 28 "ocaml" {>= "4.06.0"} 29] 30url { 31 src: 32 "https://github.com/mirage/mirage-bootvar-xen/releases/download/v0.7.0/mirage-bootvar-xen-v0.7.0.tbz" 33 checksum: [ 34 "sha256=21289b726fab61c6ef9ee3d217ba1dae65a065e33cc218abc40b9fe951041dd2" 35 "sha512=753a062746357da894244d4819a6c67a6e4c247b059dcd5b2026eb8424b6943869f5946fbc397657e1d6fdf54b694da4c050bc59d92c1eff93e06616f78a4ba1" 36 ] 37} 38flags: deprecated 39post-messages: [ "mirage-bootvar-xen is deprecated, and has been folded into mirage-bootvar" ]