nixpkgs/pkgs/development/ocaml-modules/conduit/lwt-unix.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

34 lines
561 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;
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 = "Network connection establishment library for Lwt_unix";
};
}