forked from mirrors/nixpkgs
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
15 lines
333 B
Nix
15 lines
333 B
Nix
{ buildDunePackage, ppx_sexp_conv, conduit, lwt, sexplib }:
|
|
|
|
buildDunePackage {
|
|
pname = "conduit-lwt";
|
|
inherit (conduit) version src;
|
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
|
|
|
propagatedBuildInputs = [ conduit lwt sexplib ];
|
|
|
|
meta = conduit.meta // {
|
|
description = "A network connection establishment library for Lwt";
|
|
};
|
|
}
|