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

21 lines
302 B
Nix

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