roptat pushed a commit to branch master
in repository guix.
commit eb9fa94ccae90fdb8ba3748dc62340db82f22872
Author: Julien Lepiller <[email protected]>
AuthorDate: Fri Nov 19 03:49:29 2021 +0100
gnu: ocaml-base: Update to 0.14.1.
* gnu/packages/ocaml.scm (ocaml-base): Update to 0.14.1.
---
gnu/packages/ocaml.scm | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 094bcf2..ced1380 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -6,7 +6,7 @@
;;; Copyright © 2016 Eric Bavier <[email protected]>
;;; Copyright © 2016 Jan Nieuwenhuizen <[email protected]>
;;; Copyright © 2016, 2018, 2019, 2020 Efraim Flashner <[email protected]>
-;;; Copyright © 2016-2020 Julien Lepiller <[email protected]>
+;;; Copyright © 2016-2021 Julien Lepiller <[email protected]>
;;; Copyright © 2017 Ben Woodcroft <[email protected]>
;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <[email protected]>
;;; Copyright © 2018 Peter Kreye <[email protected]>
@@ -4919,11 +4919,18 @@ functionality for parsing and pretty-printing
s-expressions.")
(define-public ocaml-base
(package
(name "ocaml-base")
- (version "0.14.0")
+ (version "0.14.1")
(home-page "https://github.com/janestreet/base")
(source
- (janestreet-origin "base" version
- "1rkdhsgbcv0a8p29mwvpd2ldz8cjk97pixl43izm54wyin4lp778"))
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/janestreet/base")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1hizjxmiqlj2zzkwplzjamw9rbnl0kh44sxgjpzdij99qnfkzylf"))))
(build-system dune-build-system)
(propagated-inputs
`(("ocaml-sexplib0" ,ocaml-sexplib0)))