mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
28 lines
494 B
Nix
28 lines
494 B
Nix
{ buildDunePackage, async, async_ssl ? null, ppx_sexp_conv, ppx_here, uri, conduit
|
|
, core, ipaddr, ipaddr-sexp, sexplib
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "conduit-async";
|
|
inherit (conduit)
|
|
version
|
|
src
|
|
;
|
|
|
|
buildInputs = [ ppx_sexp_conv ppx_here ];
|
|
|
|
propagatedBuildInputs = [
|
|
async
|
|
async_ssl
|
|
conduit
|
|
uri
|
|
ipaddr
|
|
ipaddr-sexp
|
|
core
|
|
sexplib
|
|
];
|
|
|
|
meta = conduit.meta // {
|
|
description = "Network connection establishment library for Async";
|
|
};
|
|
}
|