1ffc76754d
GitOrigin-RevId: a5cc7d3197705f933d88e97c0c61849219ce76c1
19 lines
409 B
Nix
19 lines
409 B
Nix
{ stdenv, buildDunePackage, cohttp-lwt
|
|
, conduit-lwt-unix, ppx_sexp_conv
|
|
, cmdliner, fmt, magic-mime
|
|
}:
|
|
|
|
if !stdenv.lib.versionAtLeast cohttp-lwt.version "0.99"
|
|
then cohttp-lwt
|
|
else
|
|
|
|
buildDunePackage {
|
|
pname = "cohttp-lwt-unix";
|
|
inherit (cohttp-lwt) version src meta;
|
|
|
|
useDune2 = true;
|
|
|
|
buildInputs = [ cmdliner ppx_sexp_conv ];
|
|
|
|
propagatedBuildInputs = [ cohttp-lwt conduit-lwt-unix fmt magic-mime ];
|
|
}
|