diff options
author | gemmaro <[email protected]> | 2025-02-05 12:58:53 +0900 |
---|---|---|
committer | Nicolas Goaziou <[email protected]> | 2025-02-22 15:24:10 +0100 |
commit | a6c61bf9fc1b416e141f6594750d77d336e8b656 (patch) | |
tree | 101f5873e1261e4b7418357696c73bba8aaf2871 /gnu | |
parent | 0521c109b22eb360982fc3aab11207e4002a372a (diff) |
gnu: Add perl-xstring.
* gnu/packages/perl.scm (perl-xstring): New variable.
Signed-off-by: Nicolas Goaziou <[email protected]>
Change-Id: Ib7780bc39f6dcd85eb01ede44da6875c9d2a5d8a
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/perl.scm | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index b7aaf0af95..5be256651a 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -33,7 +33,7 @@ ;;; Copyright © 2021 Raghav Gururajan <[email protected]> ;;; Copyright © 2021 Maxime Devos <[email protected]> ;;; Copyright © 2022, 2023 Evgeny Pisemsky <[email protected]> -;;; Copyright © 2022, 2023, 2024 gemmaro <[email protected]> +;;; Copyright © 2022, 2023, 2024, 2025 gemmaro <[email protected]> ;;; Copyright © 2023 Mădălin Ionel Patrașcu <[email protected]> ;;; Copyright © 2023 Andreas Enge <[email protected]> ;;; Copyright © 2023 Jake Leporte <[email protected]> @@ -12767,6 +12767,25 @@ dynamic linking mechanisms available on many platforms. Its primary purpose is to implement cheap automatic dynamic loading of Perl modules.") (license (package-license perl)))) +(define-public perl-xstring + (package + (name "perl-xstring") + (version "0.005") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/A/AT/ATOOMIC/XString-" + version ".tar.gz")) + (sha256 + (base32 "117q718hlw6gi9zy16ssm0pf0lll4l20hg77395bmrmf35fgaizj")))) + (build-system perl-build-system) + (home-page "https://metacpan.org/release/XString") + (synopsis "Isolated string helpers from @samp{B}") + (description + "XString provides the @samp{B} string helpers in one isolated +package. Right now only @code{cstring} and @code{perlstring} are available.") + (license license:perl-license))) + (define-public perl-xs-object-magic (package (name "perl-xs-object-magic") |