mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 05:04:40 +00:00
21 lines
302 B
Nix
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";
|
|
};
|
|
}
|