1{
2 buildDunePackage,
3 httpun-lwt,
4 gluten-lwt-unix,
5}:
6
7buildDunePackage {
8 pname = "httpun-lwt-unix";
9
10 inherit (httpun-lwt) version src;
11
12 propagatedBuildInputs = [
13 httpun-lwt
14 gluten-lwt-unix
15 ];
16
17 meta = httpun-lwt.meta // {
18 description = "Lwt + Unix support for httpun";
19 };
20}