From 0ecc0a10e8619a92f5fa2612ee33a85e4bc4bc6c Mon Sep 17 00:00:00 2001 From: gemmaro Date: Wed, 21 Aug 2024 20:59:25 +0900 Subject: [PATCH] gnu: Add perl-ppix-utils. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/perl.scm (perl-ppix-utils): New variable. Change-Id: I9548c693aa6f54bd53662374f77b2fbd1ca3f485 Signed-off-by: Ludovic Courtès --- gnu/packages/perl.scm | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index a0eec2baed..46de612234 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -33,7 +33,7 @@ ;;; Copyright © 2021 Raghav Gururajan ;;; Copyright © 2021 Maxime Devos ;;; Copyright © 2022, 2023 Evgeny Pisemsky -;;; Copyright © 2022, 2023 gemmaro +;;; Copyright © 2022, 2023, 2024 gemmaro ;;; Copyright © 2023 Mădălin Ionel Patrașcu ;;; Copyright © 2023 Andreas Enge ;;; Copyright © 2023 Jake Leporte @@ -9148,6 +9148,28 @@ replacing the \"@code{PPI}\" at the front of the module name with in @code{PPIx::Utilities::Node}.") (license license:perl-license))) +(define-public perl-ppix-utils + (package + (name "perl-ppix-utils") + (version "0.003") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/D/DB/DBOOK/PPIx-Utils-" + version ".tar.gz")) + (sha256 + (base32 "04dszlp7yas3yi7gm1l2g47h88i52n7gwj3jnq0vw0xdivycr6ra")))) + (build-system perl-build-system) + (propagated-inputs (list perl-b-keywords perl-ppi)) + (home-page "https://metacpan.org/release/PPIx-Utils") + (synopsis "Utility functions for Perl PPI") + (description + "@samp{PPIx::Utils} is a collection of utility functions for working +with @samp{PPI} documents. The functions are organized into +submodules, and may be imported from the appropriate submodules or via +this module.") + (license license:perl-license))) + (define-public perl-probe-perl (package (name "perl-probe-perl")