gnu: Add perl-string-trim-more.

* gnu/packages/perl.scm (perl-string-trim-more): New variable.

Change-Id: Ic6dc9baed52e70df5fc3d7c0aae46eca74009db8
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Bruno Victal 2025-02-23 20:02:05 +01:00 committed by Nicolas Goaziou
parent eb880caf43
commit 15f663686c
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -10837,6 +10837,26 @@ known prefixes.")
that they won't be changed.")
(license (package-license perl))))
(define-public perl-string-trim-more
(package
(name "perl-string-trim-more")
(version "0.03")
(source (origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/P/PE/PERLANCAR/String-Trim-More-"
version ".tar.gz"))
(sha256
(base32
"0zsfq6350pnaxpa0g5syh3w04qx5fa6svw1idxy8k4ha7vbzp73k"))))
(build-system perl-build-system)
(home-page "https://metacpan.org/release/String-Trim-More")
(synopsis "String trimming utilities")
(description "This module is an alternative to @code{String::Trim}.
Instead of a single @code{trim} function, this module provides several from
which you can choose on, depending on your needs.")
(license (package-license perl))))
(define-public perl-string-print
(package
(name "perl-string-print")