diff options
author | Julien Lepiller <julien@lepiller.eu> | 2021-11-18 23:17:08 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2021-11-18 23:17:08 +0100 |
commit | b1acfb676aa9f81531034377186effe91cafeca2 (patch) | |
tree | 6e4b8544dcf47a98cfdb461b2d657859919d7b72 /gnu/packages/ocaml.scm | |
parent | 4c91332cced67bd7b9034035fb2b02c5728509a7 (diff) | |
download | guix-b1acfb676aa9f81531034377186effe91cafeca2.tar.gz guix-b1acfb676aa9f81531034377186effe91cafeca2.zip |
gnu: ocaml-ssl: Update to 0.5.10.
* gnu/packages/ocaml.scm (ocaml-ssl): Update to 0.5.10.
Diffstat (limited to 'gnu/packages/ocaml.scm')
-rw-r--r-- | gnu/packages/ocaml.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index d559b0141f..05579cbf85 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -2356,16 +2356,16 @@ lets the client choose the concrete timeline.") (define-public ocaml-ssl (package (name "ocaml-ssl") - (version "0.5.9") + (version "0.5.10") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/savonet/ocaml-ssl") - (commit version))) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "04h02rvzrwp886n5hsx84rnc9b150iggy38g5v1x1rwz3pkdnmf0")))) + "1rszqiqayh67xlwd5411k8vib47x9kapdr037z1majd2c14z3kcb")))) (build-system dune-build-system) (arguments `(#:test-target ".")) |