ocamlPackages.httpun-eio: init at 0.2.0

This commit is contained in:
Vincent Laporte 2024-09-24 20:33:44 +02:00 committed by Vincent Laporte
parent 7e69dfd3c0
commit e2be410cef
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{ buildDunePackage
, httpun
, gluten-eio
}:
buildDunePackage {
pname = "httpun-eio";
inherit (httpun) src version;
propagatedBuildInputs = [ gluten-eio httpun ];
meta = httpun.meta // {
description = "EIO support for httpun";
};
}

View File

@ -693,6 +693,8 @@ let
httpun = callPackage ../development/ocaml-modules/httpun { };
httpun-eio = callPackage ../development/ocaml-modules/httpun/eio.nix { };
httpun-types = callPackage ../development/ocaml-modules/httpun/types.nix { };
hxd = callPackage ../development/ocaml-modules/hxd { };