diff options
author | Bruno Victal <mirai@makinata.eu> | 2025-02-23 20:02:05 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2025-02-23 21:29:14 +0100 |
commit | 15f663686c1326e62fa27569ff9c038042c8c449 (patch) | |
tree | bad96dc30538dbb19e81d98a3cf2e5ea3e5a1953 | |
parent | eb880caf43ca38b8cde2539c5e2adb00e9e25bc5 (diff) | |
download | guix-15f663686c1326e62fa27569ff9c038042c8c449.tar.gz guix-15f663686c1326e62fa27569ff9c038042c8c449.zip |
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>
-rw-r--r-- | gnu/packages/perl.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 312a812428..ba8bb3481a 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -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") |