diff options
| author | Jason Conroy <jconroy@tscripta.net> | 2025-09-23 12:49:09 +0000 |
|---|---|---|
| committer | Julien Lepiller <julien@lepiller.eu> | 2025-10-04 20:32:54 +0200 |
| commit | fae7b633dd02d863b3e7447ccb90a7ffc7ba87a8 (patch) | |
| tree | 679f14f6b06cce616a43c144f7cf29ef049533a5 /gnu/packages | |
| parent | f9b7630bb61138d27285c0c06b5a2bbe32b5a27f (diff) | |
gnu: Add ocaml-5.3.
* gnu/packages/ocaml.scm (ocaml-5.3): New variable.
Change-Id: I76c5d18b586d0258bda741ac43c12868a96c88ac
Signed-off-by: Julien Lepiller <julien@lepiller.eu>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/ocaml.scm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 8e9fe03a41e..50f912e62d5 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 |
