depot/third_party/nixpkgs/pkgs/development/ocaml-modules/cohttp/mirage.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

25 lines
543 B
Nix

{ buildDunePackage, cohttp, cohttp-lwt
, mirage-flow, mirage-channel, mirage-kv
, conduit, conduit-mirage, lwt
, astring, magic-mime
, ppx_sexp_conv
}:
buildDunePackage {
pname = "cohttp-mirage";
inherit (cohttp) version src;
duneVersion = "3";
nativeBuildInputs = [ ppx_sexp_conv ];
propagatedBuildInputs = [
mirage-flow mirage-channel conduit conduit-mirage mirage-kv
lwt cohttp cohttp-lwt astring magic-mime
];
meta = cohttp.meta // {
description = "CoHTTP implementation for the MirageOS unikernel";
};
}