me
/
guix
Archived
1
0
Fork 0

gnu: Add ocaml-mirage.

* gnu/packages/ocaml.scm (ocaml-mirage): New variable.

Signed-off-by: Christopher Baines <mail@cbaines.net>
raingloom 2023-02-15 22:59:59 +01:00 committed by Christopher Baines
parent 1d7c1ae2b4
commit c71552a562
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 24 additions and 0 deletions

View File

@ -3752,6 +3752,30 @@ how to apply them in order to produce a complete application. The main use
case is mirage.")
(license license:isc)))
(define-public ocaml-mirage
(package
(inherit ocaml-functoria-runtime)
(name "ocaml-mirage")
(build-system dune-build-system)
(arguments
'(#:package "mirage"
;; TODO again, wants opam, other tests seem to pass
;; look for a way to disable tests that want network access
#:tests? #f))
(propagated-inputs
(list ocaml-astring ocaml-bos ocaml-functoria ocaml-ipaddr ocaml-logs
ocaml-mirage-runtime ocaml-opam-monorepo))
(native-inputs (list ocaml-alcotest ocaml-fmt))
(home-page "https://github.com/mirage/mirage")
(synopsis
"The MirageOS library operating system")
(description
"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 and then compiled into
a fully-standalone, specialised unikernel.")
(license license:isc)))
(define-public ocaml-ocurl
(package
(name "ocaml-ocurl")