diff options
author | pukkamustard <pukkamustard@posteo.net> | 2022-04-08 15:22:41 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-04-11 11:55:47 +0200 |
commit | d79e10b7e0b9008bdc37bf28bd46456bca7a930d (patch) | |
tree | 36a1ddb04bfc11bb7fd18d8ab4df8d0b8284167b | |
parent | 7da907f90e74a4edf96d76ee457ff958265ef8d4 (diff) | |
download | guix-d79e10b7e0b9008bdc37bf28bd46456bca7a930d.tar.gz |
gnu: ocaml-odoc: Update to 2.2.0-alpha.
* gnu/packages/ocaml.scm (ocaml-odoc): Update to 2.2.0-alpha. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/ocaml.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 78eab203de..cb461bf257 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6766,7 +6766,9 @@ then run the Bisect_ppx report tool on the generated visitation files.") (define-public ocaml-odoc (package (name "ocaml-odoc") - (version "2.1.0") + ;; 2.2.0-alpha contains fixes for Dune 3.0 compatibility + ;; (https://github.com/ocaml/odoc/commit/6ac97f3148f7791ec7451785ef4dbd9ca0daf2d1) + (version "2.2.0-alpha") (source (origin (method git-fetch) @@ -6775,7 +6777,7 @@ then run the Bisect_ppx report tool on the generated visitation files.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1ycb468pc6vsvqj176j99bmbkrr9saxvyn9qhpazi01abbcq5d90")))) + (base32 "07zjkk455l51i29lcayzrc1q8j5bvbv97sscv8yhcj7x6h6q2nag")))) (build-system dune-build-system) (arguments `(#:phases |