summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/conduit/lwt-unix.nix
blob: b6d2e24ec551522811b5103779ad39380cedeb97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, buildDunePackage, conduit-lwt
, logs, ppx_sexp_conv, lwt_ssl
}:

if !stdenv.lib.versionAtLeast conduit-lwt.version "1.0"
then conduit-lwt
else

buildDunePackage rec {
	pname = "conduit-lwt-unix";
	inherit (conduit-lwt) version src meta;

	buildInputs = [ ppx_sexp_conv ];

	propagatedBuildInputs = [ conduit-lwt logs lwt_ssl ];
}