summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/cohttp/lwt-unix.nix
blob: 455a76ce94dd1435dcca5b82dd71f8a277074dc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildDunePackage, cohttp-lwt
, conduit-lwt-unix, ppx_sexp_conv
, cmdliner, fmt, magic-mime
}:

if !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 ];
}