mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
17 lines
340 B
Nix
17 lines
340 B
Nix
{ 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 ];
|
|
}
|