mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 05:13:04 +00:00
a8406971c3
ocamlPackages.conduit: 4.0.2 → 5.1.0 ocamlPackages.cohttp: 4.0.0 → 5.0.0 ocamlPackages.ocsigen_server: fix compatibility with cohttp-5.0.0
24 lines
521 B
Nix
24 lines
521 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;
|
|
|
|
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";
|
|
};
|
|
}
|