diff options
author | gemmaro <[email protected]> | 2025-02-05 12:58:59 +0900 |
---|---|---|
committer | Nicolas Goaziou <[email protected]> | 2025-02-22 15:24:31 +0100 |
commit | f82c7c2d4ac84e383a8484fd6c996875073058c0 (patch) | |
tree | 4afd1df7afb85577a603d71a03bcab43fa715245 | |
parent | 9829b9780fe9eee095ad1a48ff93e23f74fac1dd (diff) |
gnu: Add perl-list-someutils-xs.
* gnu/packages/perl.scm (perl-list-someutils-xs): New variable.
Signed-off-by: Nicolas Goaziou <[email protected]>
Change-Id: I72e8fa2f9966e8555f504d454daeee5ca692aeb0
-rw-r--r-- | gnu/packages/perl.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 30d7d8f23e..8f93a7dd8a 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -7022,6 +7022,29 @@ implementation of these functions only serves as a fallback in case the C portions of this module couldn't be compiled on this machine.") (license (package-license perl)))) +(define-public perl-list-someutils-xs + (package + (name "perl-list-someutils-xs") + (version "0.58") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/D/DR/DROLSKY/List-SomeUtils-XS-" + version ".tar.gz")) + (sha256 + (base32 "15xjnkjj4yxv1qn9krsbkzzkm51hibg2k3lf5767j6s848k4v7jg")))) + (build-system perl-build-system) + (native-inputs (list perl-list-someutils perl-test-warnings + perl-test-leaktrace)) + (home-page "https://metacpan.org/release/List-SomeUtils-XS") + (synopsis "XS implementation for @code{List::SomeUtils}") + (description + "@code{List::SomeUtils::XS} is a XS implementation for +@code{List::SomeUtils}. There are no user-facing parts here. See +@code{List::SomeUtils} for API details.") + (license license:artistic2.0))) + (define-public perl-mailtools (package (name "perl-mailtools") |