this repo has no description
1opam-version: "2.0" 2maintainer: "Martin Lucina <martin@lucina.net>" 3homepage: "https://github.com/mirage/mirage-bootvar-solo5" 4bug-reports: "https://github.com/mirage/mirage-bootvar-solo5/issues/" 5dev-repo: "git+https://github.com/mirage/mirage-bootvar-solo5.git" 6license: "ISC" 7authors: [ 8 "Dan Williams <djwillia@us.ibm.com>" 9 "Magnus Skjegstad <magnus@skjegstad.com>" 10 "Martin Lucina <martin@lucina.net>" 11] 12tags: [ 13 "org:mirage" 14] 15build: [ 16 ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%"] 17] 18depends: [ 19 "ocaml" {>= "4.04.2"} 20 "ocamlfind" {build} 21 "ocamlbuild" {build} 22 "topkg" {build} 23 "mirage-solo5" {>= "0.3.0" & < "0.6.0"} 24 "lwt" 25 "parse-argv" 26] 27synopsis: "Solo5 implementation of MirageOS Bootvar interface" 28description: """ 29Library for passing boot parameters from Solo5 to MirageOS. 30 31## Install 32 33Bootvar can be installed with `opam`: 34 35``` 36opam install mirage-bootvar-solo5 37``` 38 39## License 40Bootvar is published under the ISC license. See [LICENSE.md](LICENSE.md) for details.""" 41url { 42 src: 43 "https://github.com/mirage/mirage-bootvar-solo5/releases/download/v0.3.0/mirage-bootvar-solo5-0.3.0.tbz" 44 checksum: [ 45 "sha256=15f065c80c13a088632bbef1ea565b299117d03fa729a3afeaf46b98902a0ecf" 46 "md5=be303f63ee0b8f070dc77d97d844a260" 47 ] 48} 49flags: deprecated 50post-messages: [ "mirage-bootvar-solo5 is deprecated, and has been folded into mirage-bootvar" ]