[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/07: gnu: ocaml: Update to 4.11.1.
From: |
guix-commits |
Subject: |
01/07: gnu: ocaml: Update to 4.11.1. |
Date: |
Tue, 10 Nov 2020 10:06:11 -0500 (EST) |
roptat pushed a commit to branch master
in repository guix.
commit 0c8370824080991fa9fd3f2698aae13a9d4ec894
Author: Julien Lepiller <julien@lepiller.eu>
AuthorDate: Thu Oct 15 22:02:56 2020 +0200
gnu: ocaml: Update to 4.11.1.
* gnu/packages/ocaml.scm (ocaml): Update to 4.11.1.
---
gnu/packages/ocaml.scm | 20 +++++++++++++++++---
1 file changed, 17 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 30add4f..f67f5a2 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -133,10 +133,10 @@
"/lib/ocaml/site-lib"))
#:phases (modify-phases %standard-phases (delete 'configure))))
-(define-public ocaml-4.09
+(define-public ocaml-4.11
(package
(name "ocaml")
- (version "4.09.0")
+ (version "4.11.1")
(source (origin
(method url-fetch)
(uri (string-append
@@ -145,7 +145,7 @@
"/ocaml-" version ".tar.xz"))
(sha256
(base32
- "1v3z5ar326f3hzvpfljg4xj8b9lmbrl53fn57yih1bkbx3gr3yzj"))))
+ "0k4521c0p10c5ams6vjv5qkkjhmpkb0bfn04llcz46ah0f3r2jpa"))))
(build-system gnu-build-system)
(native-search-paths
(list (search-path-specification
@@ -203,6 +203,20 @@ functional, imperative and object-oriented styles of
programming.")
;; distributed under lgpl2.0.
(license (list license:qpl license:lgpl2.0))))
+(define-public ocaml-4.09
+ (package
+ (inherit ocaml-4.11)
+ (version "4.09.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://caml.inria.fr/pub/distrib/ocaml-"
+ (version-major+minor version)
+ "/ocaml-" version ".tar.xz"))
+ (sha256
+ (base32
+ "1v3z5ar326f3hzvpfljg4xj8b9lmbrl53fn57yih1bkbx3gr3yzj"))))))
+
(define-public ocaml-4.07
(package
(inherit ocaml-4.09)
- branch master updated (be0ebf3 -> 0a173fe), guix-commits, 2020/11/10
- 03/07: guix: ocaml: Add package-with-ocaml4.09., guix-commits, 2020/11/10
- 04/07: gnu: laby: Update to 0.7.0., guix-commits, 2020/11/10
- 02/07: gnu: Add ocaml4.09-findlib., guix-commits, 2020/11/10
- 05/07: gnu: ocaml-ppx-tools-versioned: Use release profile., guix-commits, 2020/11/10
- 07/07: gnu: ocaml: Switch to 4.11 by default., guix-commits, 2020/11/10
- 06/07: gnu: ocamlify: Perform bootstrap build., guix-commits, 2020/11/10
- 01/07: gnu: ocaml: Update to 4.11.1.,
guix-commits <=