this repo has no description
1opam-version: "2.0" 2maintainer: "mirageos-devel" 3authors: ["David Kaloper Meršinjak <david@numm.org>"] 4homepage: "https://github.com/mirage/mirage-os-shim" 5doc: "https://mirage.github.io/mirage-os-shim/doc" 6license: "ISC" 7dev-repo: "git+https://github.com/mirage/mirage-os-shim.git" 8bug-reports: "https://github.com/mirage/mirage-os-shim/issues" 9build: [ 10 "ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%" "--tests" "false" 11 "--with-mirage-unix" "%{mirage-unix:installed}%" 12 "--with-mirage-xen" "%{mirage-xen:installed}%" 13 "--with-mirage-solo5" "%{mirage-solo5:installed}%" 14] 15depends: [ 16 "ocaml" {>= "4.01.0"} 17 "ocamlfind" {build} 18 "ocamlbuild" {build} 19 "topkg" {build} 20 "lwt" 21] 22depopts: [ 23 "mirage-solo5" 24 "mirage-xen" 25 "mirage-unix" 26] 27conflicts: [ 28 "mirage-unix" {< "3.0.0"} 29 "mirage-unix" {>= "3.1.0"} 30 "mirage-xen" {< "3.0.0" | >= "6.0.0"} 31 "mirage-xen" {>= "3.1.0"} 32 "mirage-solo5" {< "0.2.0"} 33 "mirage-solo5" {>= "0.5.0"} 34] 35synopsis: "Portable shim for MirageOS APIs" 36description: """ 37mirage-os-shim is the intersection of the Mirage OS APIs exported under the `OS` 38modules by various Mirage backends. It shims out this interface under the same 39`cmi`, and installs several implementations, that pass through to their 40respective backends. 41 42Clients need to be compiled against the common `mirage_OS.cmi`, and use the 43module `Mirage_OS`. Final applications need to be linked using `ocamlfind`, and 44have to define one of the `ocamlfind` predicates corresponding to the actual 45`OS` implementations: `mirage_unix`, `mirage_xen`, or `mirage_solo5`. 46 47When using `ocamlbuild`, this is 48`ocamlfind -use-ocamlfind -tag 'predicate(unix)'` or similar. 49 50**WARNING** Direct access to the `OS` interface is largely deprecated. The 51interface is pretty volatile. It is highly likely that you, in fact, do not need 52this package at all. 53 54mirage-os-shim is distributed under the ISC license. 55 56[![Build Status](https://travis-ci.org/mirage/mirage-os-shim.svg?branch=master)](https://travis-ci.org/mirage/mirage-os-shim)""" 57url { 58 src: 59 "https://github.com/mirage/mirage-os-shim/releases/download/v3.0.1/mirage-os-shim-3.0.1.tbz" 60 checksum: [ 61 "sha256=4e2a31b3db2ff65b61da760c7a610ce61cca1f3a8328fd5b889c34e9d6b77741" 62 "md5=1c091d5e4265b27bbc60f48dc1085ffb" 63 ] 64} 65flags: deprecated 66post-messages: [ "mirage-os-shim is deprecated" ]