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

commit 69246b6f240e6e8c78344b13899967bbb65dc2db
Author: Jason Conroy <[email protected]>
AuthorDate: Thu Jan 15 11:53:07 2026 -0500

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

diff --git a/gnu/packages/ocaml5.scm b/gnu/packages/ocaml5.scm
index b8a49d04d0..fc0cb05636 100644
--- a/gnu/packages/ocaml5.scm
+++ b/gnu/packages/ocaml5.scm
@@ -1242,6 +1242,23 @@ s-expressions from files or other external sources, you 
should use
 parsexp_io.")
     (license license:expat)))
 
+(define-public ocaml-stdio
+  (package
+    (name "ocaml5-stdio")
+    (version "0.17.0")
+    (home-page "https://github.com/janestreet/stdio";)
+    (source
+     (janestreet-git-origin "stdio" version
+      "1l3da9qri8d04440ps51j9ffh6bpk8j11mda4lidcndkmr94r19p"))
+    (build-system dune-build-system)
+    (propagated-inputs (list ocaml-base ocaml-sexplib0))
+    (synopsis "Standard IO library for OCaml")
+    (description
+     "Stdio implements simple input/output functionalities for OCaml.  It
+re-exports the input/output functions of the OCaml standard libraries using
+a more consistent API.")
+    (license license:expat)))
+
 ;;;
 ;;; 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