mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
35 lines
584 B
Nix
35 lines
584 B
Nix
{ buildDunePackage
|
|
, conduit-lwt, ppx_sexp_conv, lwt, uri, ipaddr, ipaddr-sexp, ca-certs, logs
|
|
, lwt_ssl, tls, lwt_log, ssl
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "conduit-lwt-unix";
|
|
inherit (conduit-lwt) version src;
|
|
duneVersion = "3";
|
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
|
|
|
propagatedBuildInputs = [
|
|
conduit-lwt
|
|
lwt
|
|
uri
|
|
ipaddr
|
|
ipaddr-sexp
|
|
tls
|
|
ca-certs
|
|
logs
|
|
lwt_ssl
|
|
];
|
|
|
|
doCheck = true;
|
|
checkInputs = [
|
|
lwt_log
|
|
ssl
|
|
];
|
|
|
|
meta = conduit-lwt.meta // {
|
|
description = "A network connection establishment library for Lwt_unix";
|
|
};
|
|
}
|