summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/nocrypto
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2016-11-12 10:17:30 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2016-11-12 12:41:27 +0100
commit2d136204c47985c9518105e1af9e14810c8319ec (patch)
tree75c813173f2af5baf66bed2227a930d88e7c0ed1 /pkgs/development/ocaml-modules/nocrypto
parent72c1a6f0f46cf4e35986b49f957f690922ba7a02 (diff)
downloadnixpkgs-2d136204c47985c9518105e1af9e14810c8319ec.tar
nixpkgs-2d136204c47985c9518105e1af9e14810c8319ec.tar.gz
nixpkgs-2d136204c47985c9518105e1af9e14810c8319ec.tar.bz2
nixpkgs-2d136204c47985c9518105e1af9e14810c8319ec.tar.lz
nixpkgs-2d136204c47985c9518105e1af9e14810c8319ec.tar.xz
nixpkgs-2d136204c47985c9518105e1af9e14810c8319ec.tar.zst
nixpkgs-2d136204c47985c9518105e1af9e14810c8319ec.zip
ocamlPackages.cstruct: 1.6.0 -> 1.9.0, 2.3.0
Diffstat (limited to 'pkgs/development/ocaml-modules/nocrypto')
-rw-r--r--pkgs/development/ocaml-modules/nocrypto/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/nocrypto/default.nix b/pkgs/development/ocaml-modules/nocrypto/default.nix
index f8db935b612..fab048a9a9f 100644
--- a/pkgs/development/ocaml-modules/nocrypto/default.nix
+++ b/pkgs/development/ocaml-modules/nocrypto/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchzip, ocaml, findlib, cstruct, type_conv, zarith, ounit }:
+{ stdenv, fetchzip, ocaml, findlib, cstruct, type_conv, zarith, ocaml_lwt, ounit }:
 
 assert stdenv.lib.versionAtLeast ocaml.version "4.01";
 
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
     sha256 = "15gffvixk12ghsfra9amfszd473c8h188zfj03ngvblbdm0d80m0";
   };
 
-  buildInputs = [ ocaml findlib type_conv ounit ];
+  buildInputs = [ ocaml findlib type_conv ocaml_lwt ounit ];
   propagatedBuildInputs = [ cstruct zarith ];
 
   configureFlags = "--enable-tests";