summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/hex
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2015-06-01 20:41:50 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2015-06-01 22:37:04 +0200
commitb351009cca23584c6c8e17a334f252d96663b596 (patch)
treecc58bebda74e4915fd4c1233764993126583efdf /pkgs/development/ocaml-modules/hex
parente361e700e160679579053574fd6cd9e15878b809 (diff)
downloadnixpkgs-b351009cca23584c6c8e17a334f252d96663b596.tar
nixpkgs-b351009cca23584c6c8e17a334f252d96663b596.tar.gz
nixpkgs-b351009cca23584c6c8e17a334f252d96663b596.tar.bz2
nixpkgs-b351009cca23584c6c8e17a334f252d96663b596.tar.lz
nixpkgs-b351009cca23584c6c8e17a334f252d96663b596.tar.xz
nixpkgs-b351009cca23584c6c8e17a334f252d96663b596.tar.zst
nixpkgs-b351009cca23584c6c8e17a334f252d96663b596.zip
ocaml-hex: update from 0.1.0 to 0.2.0
Diffstat (limited to 'pkgs/development/ocaml-modules/hex')
-rw-r--r--pkgs/development/ocaml-modules/hex/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/hex/default.nix b/pkgs/development/ocaml-modules/hex/default.nix
index 1be3b4cbfb7..7a060bd795a 100644
--- a/pkgs/development/ocaml-modules/hex/default.nix
+++ b/pkgs/development/ocaml-modules/hex/default.nix
@@ -1,16 +1,17 @@
-{ stdenv, fetchzip, ocaml, findlib }:
+{ stdenv, fetchzip, ocaml, findlib, cstruct }:
 
-let version = "0.1.0"; in
+let version = "0.2.0"; in
 
 stdenv.mkDerivation {
   name = "ocaml-hex-${version}";
 
   src = fetchzip {
     url = "https://github.com/mirage/ocaml-hex/archive/${version}.tar.gz";
-    sha256 = "1nna0v5wi1g8l9ywl43xda2lqbz3sa3ncpyg84bl9baxyfmw4p9n";
+    sha256 = "13vmpxwg5vb2qvkdqz37rx1ya19r9cp4dwylx8jj15mn77hpy7xg";
   };
 
   buildInputs = [ ocaml findlib ];
+  propagatedBuildInputs = [ cstruct ];
   createFindlibDestdir = true;
 
   meta = {