mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
15 lines
374 B
Nix
15 lines
374 B
Nix
{ buildDunePackage, ppx_sexp_conv, conduit, ocaml_lwt, sexplib }:
|
|
|
|
buildDunePackage {
|
|
pname = "conduit-lwt";
|
|
inherit (conduit) version src useDune2 minimumOCamlVersion;
|
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
|
|
|
propagatedBuildInputs = [ conduit ocaml_lwt sexplib ];
|
|
|
|
meta = conduit.meta // {
|
|
description = "A network connection establishment library for Lwt";
|
|
};
|
|
}
|