summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tls
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-11-27 19:08:40 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-11-27 20:49:18 +0000
commitbfc0959511519af01c9f04ff171fd188f81d731d (patch)
tree98f0202acacf6f6e8841e483df51e09c4fcf7091 /pkgs/development/ocaml-modules/tls
parente7f4979270fc5a1ca02c398eece1d88c36758e04 (diff)
downloadnixlib-bfc0959511519af01c9f04ff171fd188f81d731d.tar
nixlib-bfc0959511519af01c9f04ff171fd188f81d731d.tar.gz
nixlib-bfc0959511519af01c9f04ff171fd188f81d731d.tar.bz2
nixlib-bfc0959511519af01c9f04ff171fd188f81d731d.tar.lz
nixlib-bfc0959511519af01c9f04ff171fd188f81d731d.tar.xz
nixlib-bfc0959511519af01c9f04ff171fd188f81d731d.tar.zst
nixlib-bfc0959511519af01c9f04ff171fd188f81d731d.zip
ocamlPackages.cstruct: 2.3.2 -> 3.0.2
Diffstat (limited to 'pkgs/development/ocaml-modules/tls')
-rw-r--r--pkgs/development/ocaml-modules/tls/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/tls/default.nix b/pkgs/development/ocaml-modules/tls/default.nix
index b38138c55731..8c146102ad1b 100644
--- a/pkgs/development/ocaml-modules/tls/default.nix
+++ b/pkgs/development/ocaml-modules/tls/default.nix
@@ -1,5 +1,5 @@
 { stdenv, buildOcaml, fetchFromGitHub, findlib, ocamlbuild, ocaml_oasis
-, ppx_tools, ppx_sexp_conv, result, x509, nocrypto, cstruct, ounit
+, ppx_tools, ppx_sexp_conv, result, x509, nocrypto, cstruct, ppx_cstruct, cstruct-unix, ounit
 , lwt     ? null}:
 
 with stdenv.lib;
@@ -19,7 +19,7 @@ buildOcaml rec {
     sha256 = "19q2hzxiasz9pzczgb63kikg0mc9mw98dfvch5falf2rincycj24";
   };
 
-  buildInputs = [ ocamlbuild findlib ocaml_oasis ppx_sexp_conv ounit ];
+  buildInputs = [ ocamlbuild findlib ocaml_oasis ppx_sexp_conv ounit ppx_cstruct cstruct-unix ];
   propagatedBuildInputs = [ cstruct nocrypto result x509 ] ++
                           optional withLwt lwt;