mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
25 lines
300 B
Nix
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";
|
|
};
|
|
}
|