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

commit 57ce7968d6380c0ee8079ae71f8c0e05d81fed6a
Author: Jason Conroy <[email protected]>
AuthorDate: Mon Feb 16 09:19:08 2026 -0500

    gnu: ocaml5: Add %ocaml-mirage-base.
    
    * gnu/packages/ocaml5.scm (%ocaml-mirage-base): New variable.
    
    Change-Id: I2daeb5d84a4a64f9df6f79f651dcbdfc000c5f64
    Signed-off-by: Julien Lepiller <[email protected]>
---
 gnu/packages/ocaml5.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/ocaml5.scm b/gnu/packages/ocaml5.scm
index c48c6bff32..89e4ea55f8 100644
--- a/gnu/packages/ocaml5.scm
+++ b/gnu/packages/ocaml5.scm
@@ -3763,6 +3763,29 @@ RFC2822, RFC5321 and RFC6532.  It handles UTF-8 email 
addresses and
 encoded-word according to RFC2047.")
     (license license:expat)))
 
+(define %ocaml-mirage-base
+  (package
+    (name "ocaml5-mirage-base")
+    (version "4.3.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/mirage/mirage/";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name "mirage" version))
+       (sha256
+        (base32 "09mqbffrhnklbc50gaflkwb3h1xysqqiwb84a9q1phjl038pic6r"))))
+    (build-system dune-build-system)
+    (home-page "https://github.com/mirage/mirage";)
+    (synopsis "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)))
+
 ;;;
 ;;; 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