summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/x509
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/x509
parente7f4979270fc5a1ca02c398eece1d88c36758e04 (diff)
downloadnixpkgs-bfc0959511519af01c9f04ff171fd188f81d731d.tar
nixpkgs-bfc0959511519af01c9f04ff171fd188f81d731d.tar.gz
nixpkgs-bfc0959511519af01c9f04ff171fd188f81d731d.tar.bz2
nixpkgs-bfc0959511519af01c9f04ff171fd188f81d731d.tar.lz
nixpkgs-bfc0959511519af01c9f04ff171fd188f81d731d.tar.xz
nixpkgs-bfc0959511519af01c9f04ff171fd188f81d731d.tar.zst
nixpkgs-bfc0959511519af01c9f04ff171fd188f81d731d.zip
ocamlPackages.cstruct: 2.3.2 -> 3.0.2
Diffstat (limited to 'pkgs/development/ocaml-modules/x509')
-rw-r--r--pkgs/development/ocaml-modules/x509/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/x509/default.nix b/pkgs/development/ocaml-modules/x509/default.nix
index ab82f6abdcb..316035b4054 100644
--- a/pkgs/development/ocaml-modules/x509/default.nix
+++ b/pkgs/development/ocaml-modules/x509/default.nix
@@ -1,4 +1,6 @@
-{stdenv, buildOcaml, fetchFromGitHub, ocaml, findlib, asn1-combinators, nocrypto, ounit, ocaml_oasis, ppx_sexp_conv}:
+{ stdenv, buildOcaml, fetchFromGitHub, ocaml, findlib, asn1-combinators, nocrypto
+, ounit, ocaml_oasis, ppx_sexp_conv, cstruct-unix
+}:
 
 buildOcaml rec {
   name = "x509";
@@ -13,7 +15,7 @@ buildOcaml rec {
     sha256 = "07cc3z6h87460z3f4vz8nlczw5jkc4vjhix413z9x6nral876rn7";
   };
 
-  buildInputs = [ ocaml ocaml_oasis findlib ounit ppx_sexp_conv ];
+  buildInputs = [ ocaml ocaml_oasis findlib ounit ppx_sexp_conv cstruct-unix ];
   propagatedBuildInputs = [ asn1-combinators nocrypto ];
 
   configureFlags = "--enable-tests";