diff options
author | Julien Lepiller <julien@lepiller.eu> | 2021-11-19 03:49:29 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2021-11-19 03:51:16 +0100 |
commit | eb9fa94ccae90fdb8ba3748dc62340db82f22872 (patch) | |
tree | 830bbc5e03f90d2dbff020407198d1aef4abe4f1 /gnu | |
parent | 78c930e617fcd756c8fc4b60c99e4e18074dc814 (diff) | |
download | guix-eb9fa94ccae90fdb8ba3748dc62340db82f22872.tar guix-eb9fa94ccae90fdb8ba3748dc62340db82f22872.tar.gz |
gnu: ocaml-base: Update to 0.14.1.
* gnu/packages/ocaml.scm (ocaml-base): Update to 0.14.1.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ocaml.scm | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 094bcf223d..ced13806f3 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6,7 +6,7 @@ ;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org> ;;; Copyright © 2016, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il> -;;; Copyright © 2016-2020 Julien Lepiller <julien@lepiller.eu> +;;; Copyright © 2016-2021 Julien Lepiller <julien@lepiller.eu> ;;; Copyright © 2017 Ben Woodcroft <donttrustben@gmail.com> ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018 Peter Kreye <kreyepr@gmail.com> @@ -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))) |