depot/third_party/nixpkgs/pkgs/development/ocaml-modules/h2/eio.nix

19 lines
236 B
Nix
Raw Normal View History

{ buildDunePackage
, h2
, eio
, gluten-eio
}:
buildDunePackage {
pname = "h2-eio";
inherit (h2) src version;
propagatedBuildInputs = [ eio gluten-eio h2 ];
meta = h2.meta // {
description = "EIO support for h2";
};
}