diff options
| author | Antero Mejr <antero@mailbox.org> | 2023-06-04 17:42:43 +0000 |
|---|---|---|
| committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2024-12-22 13:19:05 +0100 |
| commit | 6af488be9a5dd8a60a15d6830d852555cda6f8c6 (patch) | |
| tree | 3eb29988dd0315603888abc1378040323afabf35 /gnu | |
| parent | b96721b7bde8dafe426dd0a29c246d9460bd911a (diff) | |
gnu: Add perl-net-smtps.
* gnu/packages/perl-web.scm (perl-net-smtps): New variable.
Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/perl-web.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/perl-web.scm b/gnu/packages/perl-web.scm index 83bf1448ab7..e4472beaeef 100644 --- a/gnu/packages/perl-web.scm +++ b/gnu/packages/perl-web.scm | |||
| @@ -290,3 +290,26 @@ SpamAssassin.") | |||
| 290 | "The Perl module @code{Geo::IP} looks up location and network information | 290 | "The Perl module @code{Geo::IP} looks up location and network information |
| 291 | by IP Address.") | 291 | by IP Address.") |
| 292 | (license license:perl-license))) | 292 | (license license:perl-license))) |
| 293 | |||
| 294 | (define-public perl-net-smtps | ||
| 295 | (package | ||
| 296 | (name "perl-net-smtps") | ||
| 297 | (version "0.10") | ||
| 298 | (source (origin | ||
| 299 | (method url-fetch) | ||
| 300 | (uri (string-append | ||
| 301 | "mirror://cpan/authors/id/T/TO/TOMO/src/Net-SMTPS-" version | ||
| 302 | ".tar.gz")) | ||
| 303 | (sha256 | ||
| 304 | (base32 | ||
| 305 | "1w6h7yjbk6a8xyi6rxgb0xlp2yqn55axl23wnqx687fy9y7gmzx9")))) | ||
| 306 | (build-system perl-build-system) | ||
| 307 | (propagated-inputs (list perl-authen-sasl | ||
| 308 | perl-io-socket-ssl)) | ||
| 309 | (home-page "https://metacpan.org/release/Net-SMTPS") | ||
| 310 | (synopsis "SSL/STARTTLS support for Net::SMTP") | ||
| 311 | (description | ||
| 312 | "This module implements a wrapper for @code{Net::SMTP}, enabling | ||
| 313 | over-SSL/STARTTLS support. This module inherits most of all the methods from | ||
| 314 | @code{Net::SMTP}(2.X).") | ||
| 315 | (license license:perl-license))) | ||
