This commit is contained in:
swrup 2025-11-11 02:07:51 +01:00
parent aa2ff7b2f0
commit 2f3113f55d
11742 changed files with 1223940 additions and 0 deletions

View file

@ -0,0 +1,56 @@
version: "4.10.3"
opam-version: "2.0"
maintainer: ["anil@recoil.org" "thomas@gazagnaire.org"]
authors: ["Thomas Gazagnaire" "Anil Madhavapeddy" "Gabriel Radanne"
"Mindy Preston" "Thomas Leonard" "Nicolas Ojeda Bar"
"Dave Scott" "David Kaloper" "Hannes Mehnert" "Richard Mortier"]
homepage: "https://github.com/mirage/mirage"
bug-reports: "https://github.com/mirage/mirage/issues/"
dev-repo: "git+https://github.com/mirage/mirage.git"
license: "ISC"
tags: ["org:mirage" "org:xapi-project"]
doc: "https://mirage.github.io/mirage/"
available: opam-version >= "2.1.0"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.13.0"}
"dune" {>= "2.9.0"}
"astring"
"cmdliner" {>= "2.0.0"}
"emile" {>= "1.1"}
"fmt" {>= "0.8.7"}
"ipaddr" {>= "5.0.0"}
"bos"
"fpath"
"rresult" {>= "0.7.0"}
"uri" {>= "4.2.0"}
"logs" {>= "0.7.0"}
"opam-monorepo" {>= "0.4.0"}
"alcotest" {with-test}
"mirage-runtime" {with-test & = version}
"dune" {with-test & != "3.20.0" & != "3.20.1"}
]
conflicts: [ "jbuilder" {with-test} ]
synopsis: "The MirageOS library operating system"
description: """
MirageOS is a library operating system that constructs unikernels for
secure, high-performance network applications across a variety of
cloud computing and mobile platforms. Code can be developed on a
normal OS such as Linux or MacOS X, and then compiled into a
fully-standalone, specialised unikernel that runs under the Xen
or KVM (or FreeBSD BHyve or OpenBSD VMM) hypervisor. It also runs
on the Muen separation kernel.
Since Xen powers most public cloud computing infrastructure such as
Amazon EC2 or Rackspace, this lets your servers run more cheaply,
securely and with finer control than with a full software stack.
"""
x-maintenance-intent: [ "(latest)" ]