1ffc76754d
GitOrigin-RevId: a5cc7d3197705f933d88e97c0c61849219ce76c1
14 lines
365 B
Nix
14 lines
365 B
Nix
{ stdenv, buildDunePackage, ppx_sexp_conv, conduit, ocaml_lwt, sexplib }:
|
|
|
|
buildDunePackage {
|
|
pname = "conduit-lwt";
|
|
inherit (conduit) version src minimumOCamlVersion;
|
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
|
|
|
propagatedBuildInputs = [ conduit ocaml_lwt sexplib ];
|
|
|
|
meta = conduit.meta // {
|
|
description = "A network connection establishment library for Lwt";
|
|
};
|
|
}
|