summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/cohttp
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2018-09-28 15:28:36 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2018-10-08 05:59:24 +0000
commitbdaedbe38ce73f874004afdb49658caaaf014b35 (patch)
tree850445af44c09cd474668361a5e4e21790eb2d5a /pkgs/development/ocaml-modules/cohttp
parent4b1f2fb0b3cecef4666a861516b0f0fc4e530522 (diff)
downloadnixlib-bdaedbe38ce73f874004afdb49658caaaf014b35.tar
nixlib-bdaedbe38ce73f874004afdb49658caaaf014b35.tar.gz
nixlib-bdaedbe38ce73f874004afdb49658caaaf014b35.tar.bz2
nixlib-bdaedbe38ce73f874004afdb49658caaaf014b35.tar.lz
nixlib-bdaedbe38ce73f874004afdb49658caaaf014b35.tar.xz
nixlib-bdaedbe38ce73f874004afdb49658caaaf014b35.tar.zst
nixlib-bdaedbe38ce73f874004afdb49658caaaf014b35.zip
ocamlPackages.ocaml_lwt: 3.3.0 -> 4.1.0
Diffstat (limited to 'pkgs/development/ocaml-modules/cohttp')
-rw-r--r--pkgs/development/ocaml-modules/cohttp/lwt.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/cohttp/lwt.nix b/pkgs/development/ocaml-modules/cohttp/lwt.nix
index 1630bfd131e4..741df5b06145 100644
--- a/pkgs/development/ocaml-modules/cohttp/lwt.nix
+++ b/pkgs/development/ocaml-modules/cohttp/lwt.nix
@@ -1,4 +1,4 @@
-{ stdenv, ocaml, findlib, dune, cohttp, lwt3, uri, ppx_sexp_conv }:
+{ stdenv, ocaml, findlib, dune, cohttp, ocaml_lwt, uri, ppx_sexp_conv }:
 
 if !stdenv.lib.versionAtLeast cohttp.version "0.99"
 then cohttp
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
 
 	buildInputs = [ ocaml findlib dune uri ppx_sexp_conv ];
 
-	propagatedBuildInputs = [ cohttp lwt3 ];
+	propagatedBuildInputs = [ cohttp ocaml_lwt ];
 
 	buildPhase = "dune build -p cohttp-lwt";
 }