1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-18 12:50:18 -04:00
nixpkgs/pkgs/development/ocaml-modules/httpun/eio.nix
2024-09-30 06:58:48 +02:00

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";
};
}