Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
358 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
ppx_sexp_conv,
conduit,
lwt,
sexplib0,
}:
buildDunePackage {
pname = "conduit-lwt";
inherit (conduit) version src;
buildInputs = [ ppx_sexp_conv ];
propagatedBuildInputs = [
conduit
lwt
sexplib0
];
meta = conduit.meta // {
description = "Network connection establishment library for Lwt";
};
}