diff options
author | Julien Lepiller <julien@lepiller.eu> | 2021-11-20 14:41:50 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2021-11-20 17:07:14 +0100 |
commit | 1277bd9fc01ca0f267ca60b91d79c0c72b40631a (patch) | |
tree | e29827267e2c1b874992cfcd0c6204339bec826f | |
parent | e46621ca6c90027aabe79b8391773184a163bac9 (diff) |
gnu: ocaml-ocplib-endian: Update to 1.2.
* gnu/packages/ocaml.scm (ocaml-ocplib-endian): Update to 1.2.
-rw-r--r-- | gnu/packages/ocaml.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index eb63f5febd..5a3f32ea6d 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -3478,7 +3478,7 @@ standard iterator type starting from 4.07.") (define-public ocaml-ocplib-endian (package (name "ocaml-ocplib-endian") - (version "1.0") + (version "1.2") (source (origin (method git-fetch) (uri (git-reference @@ -3486,12 +3486,13 @@ standard iterator type starting from 4.07.") (commit version))) (sha256 (base32 - "0s1ld3kavz892b8awyxyg1mr98h2g61gy9ci5v6yb49bsii6wicw")) + "1klj4g451s7m5r8bxmwc1rpvngpqdm40csnx9smgc06pwy2fax2c")) (file-name (git-file-name name version)))) - (build-system ocaml-build-system) + (build-system dune-build-system) + (arguments + `(#:test-target "tests")) (native-inputs - `(("cppo" ,ocaml-cppo) - ("ocamlbuild" ,ocamlbuild))) + `(("cppo" ,ocaml-cppo))) (home-page "https://github.com/OCamlPro/ocplib-endian") (synopsis "Optimised functions to read and write int16/32/64 from strings and bigarrays") |