Files

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

40 lines
494 B
Nix
Raw Permalink Normal View History

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