summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/conduit
diff options
context:
space:
mode:
authorAaron L. Zeng <me@bcc32.com>2020-05-25 19:23:05 -0400
committerAaron L. Zeng <me@bcc32.com>2020-08-28 11:33:33 -0400
commit91337f4169454333837ab3f87802326d7e362f78 (patch)
tree4ad9ebfd08ab24e0046b8d5e20c0474c14ea70bc /pkgs/development/ocaml-modules/conduit
parent48e06000c2b29277edf6c840e613c337990e77f0 (diff)
downloadnixpkgs-91337f4169454333837ab3f87802326d7e362f78.tar
nixpkgs-91337f4169454333837ab3f87802326d7e362f78.tar.gz
nixpkgs-91337f4169454333837ab3f87802326d7e362f78.tar.bz2
nixpkgs-91337f4169454333837ab3f87802326d7e362f78.tar.lz
nixpkgs-91337f4169454333837ab3f87802326d7e362f78.tar.xz
nixpkgs-91337f4169454333837ab3f87802326d7e362f78.tar.zst
nixpkgs-91337f4169454333837ab3f87802326d7e362f78.zip
ocamlPackages.conduit-async: Add async_ssl to propagatedBuildInputs
Diffstat (limited to 'pkgs/development/ocaml-modules/conduit')
-rw-r--r--pkgs/development/ocaml-modules/conduit/async.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/conduit/async.nix b/pkgs/development/ocaml-modules/conduit/async.nix
index 1c5834c415a..f16819ed8ae 100644
--- a/pkgs/development/ocaml-modules/conduit/async.nix
+++ b/pkgs/development/ocaml-modules/conduit/async.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildDunePackage, async, ppx_sexp_conv, conduit }:
+{ stdenv, buildDunePackage, async, async_ssl, ppx_sexp_conv, conduit }:
 
 if !stdenv.lib.versionAtLeast conduit.version "1.0"
 then conduit
@@ -6,11 +6,12 @@ else
 
 buildDunePackage {
 	pname = "conduit-async";
+	useDune2 = true;
 	inherit (conduit) version src;
 
 	buildInputs = [ ppx_sexp_conv ];
 
-	propagatedBuildInputs = [ async conduit ];
+	propagatedBuildInputs = [ async async_ssl conduit ];
 
 	meta = conduit.meta // {
 		description = "A network connection establishment library for Async";