guix_mirror_bot pushed a commit to branch master
in repository guix.
commit fae7b633dd02d863b3e7447ccb90a7ffc7ba87a8
Author: Jason Conroy <[email protected]>
AuthorDate: Tue Sep 23 12:49:09 2025 +0000
gnu: Add ocaml-5.3.
* gnu/packages/ocaml.scm (ocaml-5.3): New variable.
Change-Id: I76c5d18b586d0258bda741ac43c12868a96c88ac
Signed-off-by: Julien Lepiller <[email protected]>
---
gnu/packages/ocaml.scm | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 8e9fe03a41..50f912e62d 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -253,6 +253,19 @@ functional, imperative and object-oriented styles of
programming.")
;; distributed under lgpl2.0.
(license (list license:qpl license:lgpl2.0))))
+(define-public ocaml-5.3
+ (package
+ (inherit ocaml-5.0)
+ (version "5.3.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ocaml/ocaml")
+ (commit version)))
+ (file-name (git-file-name "ocaml" version))
+ (sha256
+ (base32
+ "05jhy9zn53v12rn3sg3vllqf5blv1gp7f06803npimc58crxy6rv"))))))
(define-public ocaml-4.14
(package