guix_mirror_bot pushed a commit to branch ocaml-team
in repository guix.

commit 02bb3debe7e3ff0e28a20d144d35ecf34b784b40
Author: Jason Conroy <[email protected]>
AuthorDate: Mon Feb 16 08:48:20 2026 -0500

    gnu: ocaml5: Add ocaml-functoria-runtime.
    
    * gnu/packages/ocaml5.scm (ocaml-functoria-runtime): New variable.
    
    Change-Id: I70fb1730d7c3ded36a14d9ceda308d241199a334
    Signed-off-by: Julien Lepiller <[email protected]>
---
 gnu/packages/ocaml5.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/ocaml5.scm b/gnu/packages/ocaml5.scm
index 89e4ea55f8..a960718e55 100644
--- a/gnu/packages/ocaml5.scm
+++ b/gnu/packages/ocaml5.scm
@@ -3786,6 +3786,28 @@ 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-functoria-runtime
+  (package
+    (inherit %ocaml-mirage-base)
+    (name "ocaml5-functoria-runtime")
+    (arguments
+     '(#:package "functoria-runtime"
+       ;; some tests require opam, which needs network access.
+       #:tests? #f))
+    (propagated-inputs (list ocaml-cmdliner
+                             ocaml-fmt
+                             ocaml-logs
+                             ocaml-bos
+                             ocaml-ipaddr
+                             ocaml-emile
+                             ocaml-uri))
+    (native-inputs (list ocaml-alcotest))
+    (home-page "https://github.com/mirage/mirage";)
+    (synopsis "Runtime support library for functoria-generated code")
+    (description
+     "This is a runtime support library for MirageOS, a library operating 
system
+that constructs unikernels.")))
+
 ;;;
 ;;; Avoid adding new packages to the end of this file. To reduce the chances
 ;;; of a merge conflict, place them above by existing packages with similar

Reply via email to