me
/
guix
Archived
1
0
Fork 0

gnu: Add perl-string-util.

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

Change-Id: Iaef13963efb3d795bcc0c16bcdd72c112894f886
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Steve George 2024-04-26 13:42:01 +02:00 committed by Ludovic Courtès
parent 421372c4cd
commit 57bb1998a0
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 20 additions and 0 deletions

View File

@ -9967,6 +9967,26 @@ that they won't be changed.")
a functional interface.")
(license (package-license perl))))
(define-public perl-string-util
(package
(name "perl-string-util")
(version "1.34")
(source
(origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/B/BA/BAKERSCOT/String-Util-" version
".tar.gz"))
(sha256
(base32 "0sf44mky5kawj9jnf0zpv688wchr5ab5s5gs45jyahakcv6yi71i"))))
(build-system perl-build-system)
(native-inputs (list perl-module-build-tiny))
(home-page "https://metacpan.org/release/String-Util")
(synopsis "String processing utility functions")
(description "A @code{String::Util} module of small, handy functions for
processing strings in various ways.")
(license license:perl-license)))
(define-public perl-sub-exporter
(package
(name "perl-sub-exporter")