Files
nixpkgs/pkgs/development/ocaml-modules/httpun/lwt.nix
2025-02-12 03:51:04 +01:00

25 lines
300 B
Nix

{
buildDunePackage,
httpun,
lwt,
gluten,
gluten-lwt,
}:
buildDunePackage {
pname = "httpun-lwt";
inherit (httpun) version src;
propagatedBuildInputs = [
gluten
gluten-lwt
httpun
lwt
];
meta = httpun.meta // {
description = "Lwt support for httpun";
};
}