mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-06 13:53:05 +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
20 lines
379 B
Nix
20 lines
379 B
Nix
{ lib, buildDunePackage, cohttp, lwt, uri, ppx_sexp_conv, logs, sexplib0 }:
|
|
|
|
buildDunePackage {
|
|
pname = "cohttp-lwt";
|
|
inherit (cohttp)
|
|
version
|
|
src
|
|
;
|
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
|
|
|
propagatedBuildInputs = [
|
|
cohttp lwt logs sexplib0 uri
|
|
];
|
|
|
|
meta = cohttp.meta // {
|
|
description = "CoHTTP implementation using the Lwt concurrency library";
|
|
};
|
|
}
|