2018-11-05 02:21:46 -08:00
|
|
|
{ stdenv, buildDunePackage, conduit-lwt
|
2018-05-15 06:31:28 -07:00
|
|
|
, logs, ppx_sexp_conv, lwt_ssl
|
2017-08-27 12:00:55 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
if !stdenv.lib.versionAtLeast conduit-lwt.version "1.0"
|
|
|
|
then conduit-lwt
|
|
|
|
else
|
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
buildDunePackage {
|
2018-11-05 02:21:46 -08:00
|
|
|
pname = "conduit-lwt-unix";
|
|
|
|
inherit (conduit-lwt) version src meta;
|
2017-08-27 12:00:55 -07:00
|
|
|
|
2018-11-05 02:21:46 -08:00
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
2017-08-27 12:00:55 -07:00
|
|
|
|
2018-05-15 06:31:28 -07:00
|
|
|
propagatedBuildInputs = [ conduit-lwt logs lwt_ssl ];
|
2017-08-27 12:00:55 -07:00
|
|
|
}
|