mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
17 lines
249 B
Nix
17 lines
249 B
Nix
{ buildDunePackage
|
|
, httpun
|
|
, gluten-eio
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "httpun-eio";
|
|
|
|
inherit (httpun) src version;
|
|
|
|
propagatedBuildInputs = [ gluten-eio httpun ];
|
|
|
|
meta = httpun.meta // {
|
|
description = "EIO support for httpun";
|
|
};
|
|
}
|