diff options
author | Wilko Meyer <[email protected]> | 2023-12-18 18:03:09 +0100 |
---|---|---|
committer | Nicolas Goaziou <[email protected]> | 2025-03-09 17:37:01 +0100 |
commit | a823f8162cff2dfb0d4b48ad047ab38060130387 (patch) | |
tree | 080387ab784c459c25bba775c7f8f29d042e643f /gnu | |
parent | 5b55381b9c6e3d777501fbd6e0878b16b8cffb2e (diff) |
gnu: Add perl-ppi-xs.
* gnu/packages/perl.scm (perl-ppi-xs): New variable.
Change-Id: I587488870702019faec3aa330e54ad1ddad32db2
Signed-off-by: Nicolas Goaziou <[email protected]>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/perl.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 1c3f954038..602ca6a5b1 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -9949,6 +9949,24 @@ applications.") code.") (license license:perl-license))) +(define-public perl-ppi-xs + (package + (name "perl-ppi-xs") + (version "0.910") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/PPI-XS-" version + ".tar.gz")) + (sha256 + (base32 "0q7wdzsf15qx1bh2ckgldz533cswbp9nzs6v9d6v9hvzixyy7x6d")))) + (build-system perl-build-system) + (propagated-inputs (list perl-ppi)) + (home-page "https://metacpan.org/release/PPI-XS") + (synopsis "(Minor) XS acceleration for PPI") + (description "@code{PPI::XS} provides (minor) XS acceleration for PPI.") + (license license:perl-license))) + (define-public perl-ppix-regexp (package (name "perl-ppix-regexp") |