package mirage
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=1155b5e9a585d3b44dfdd72777d94a7222b0f88a1737593bfb1f09954b6fb914
sha512=c59a0051f1037d7dd5bb81dfc8a265117b533383d0b285e0c2101b44d2ca8bcab40c432ce696a5b44397216e78ac59863f1ab6c5fb33bb338ca18d7ef359500f
doc/mirage.functoria/Functoria/Package/index.html
Module Functoria.Package
Source
Representation of opam packages.
The scope of package installation:
- Switch: installed with opam.
- Monorepo: locally fetched along unikernel sources.
The type for opam packages.
val v :
?scope:scope ->
?build:bool ->
?sublibs:string list ->
?libs:string list ->
?min:string ->
?max:string ->
?pin:string ->
?pin_version:string ->
string ->
t
v ~scope ~build ~sublibs ~libs ~min ~max ~pin opam
is a package
. Build
indicates a build-time dependency only, defaults to false
. The library name is by default the same as opam
, you can specify ~sublibs
to add sublibraries (e.g. ~sublibs:["mirage"] "foo"
will result in the library name ["foo.mirage"]
, and ~sublibs:[""; "mirage"] "foo"
will result in the library names ["foo";"foo.mirage"]
). In case the library name is disjoint (or empty), use ~libs
. Specifying both ~libs
and ~sublibs
leads to an invalid argument. Version constraints are given as min
(inclusive) and max
(exclusive). If pin
is provided, a pin-depends is generated, pin_version
is "dev"
by default. ~scope
specifies the installation location of the package.
with_scope t
returns t with chosen installation location.
pin t
is Some (name_version, r)
iff t
is pinned to the repository r
.
libraries t
is the set of libraries (and sub-libraries) used in the package t
. For most packages, it will only contain one library whose name is name t
.
max_versions
is the set of maximum versions of t
which are required.
min_versions
is the set minimum versions of t
which are required.
merge x y
is merges the information of x
and y
. The result is None
if name x != name y
.