summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpukkamustard <pukkamustard@posteo.net>2021-08-24 07:54:00 +0000
committerLudovic Courtès <ludo@gnu.org>2021-09-24 13:50:41 +0200
commitcf429a8aa2ee34b24c73122ba927437ad4fed4b4 (patch)
tree5576e5c58bc9110955a8f3a924fad6dd2a99a177
parentd326dec8115cf5e2cac9497633dc11ecc970361b (diff)
downloadguix-patches-cf429a8aa2ee34b24c73122ba927437ad4fed4b4.tar
guix-patches-cf429a8aa2ee34b24c73122ba927437ad4fed4b4.tar.gz
gnu: ocaml-cstruct: Update to 6.0.1.
* gnu/packages/ocaml.scm (ocaml-cstruct): Update to 6.0.1. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r--gnu/packages/ocaml.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index db1d973238..f2ad3ffde1 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -3408,7 +3408,7 @@ big- and little-endian, with their unsafe counter-parts.")
(define-public ocaml-cstruct
(package
(name "ocaml-cstruct")
- (version "4.0.0")
+ (version "6.0.1")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -3417,11 +3417,13 @@ big- and little-endian, with their unsafe counter-parts.")
(file-name (git-file-name name version))
(sha256
(base32
- "0m4bz0digcsc8l2msfikwcbi1y371kccx6xnkwrz212mf5mp98bv"))))
+ "0gpyr3cf393j1ir7i2m2qhx75l21w6ad7imdd73xn0jy3pjg4wsj"))))
(build-system dune-build-system)
(arguments
`(#:package "cstruct"
#:test-target "."))
+ (propagated-inputs
+ `(("ocaml-bigarray-compat" ,ocaml-bigarray-compat)))
(native-inputs
`(("ocaml-alcotest" ,ocaml-alcotest)))
(home-page "https://github.com/mirage/ocaml-cstruct")