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

commit a9e4ed19e4867d2570dc4f6f6a3ae0008cc5f0e5
Author: Jason Conroy <[email protected]>
AuthorDate: Sat Jan 10 17:03:12 2026 -0500

    gnu: ocaml5: Add ocaml-bigarray-compat.
    
    * gnu/packages/ocaml5.scm (ocaml-bigarray-compat): New variable.
    
    Change-Id: I258851aaec598b98fbcd06054ffcae60e0990b82
    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 3e814d4e18..6f40eb153b 100644
--- a/gnu/packages/ocaml5.scm
+++ b/gnu/packages/ocaml5.scm
@@ -411,6 +411,28 @@ programs.  It allows the definition of simple macros and 
file inclusion.  Cppo i
 @end enumerate")
     (license license:bsd-3)))
 
+(define-public ocaml-bigarray-compat
+  (package
+    (name "ocaml5-bigarray-compat")
+    (version "1.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/mirage/bigarray-compat";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0hif5baiwswdblymyfbxh9066pfqynlz5vj3b2brpn0a12k6i5fq"))))
+    (build-system dune-build-system)
+    (arguments
+     `(#:tests? #f)) ;no tests
+    (home-page "https://github.com/mirage/bigarray-compat";)
+    (synopsis "OCaml compatibility library")
+    (description "This package contains a compatibility library for
+@code{Stdlib.Bigarray} in OCaml.")
+    (license license:isc)))
+
 (define-public ocaml5.3-dune-bootstrap
   (package
     (name "ocaml5.3-dune")

Reply via email to