summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnderson Torres <anderson.torres.8519@gmail.com>2025-12-30 23:03:17 -0300
committerAndreas Enge <andreas@enge.fr>2026-02-19 21:36:58 +0100
commit373e90a93e4262cf671f56ada4ea037eeaedc541 (patch)
tree7b8a0b96b34c09fb55e591f63161376ccc10a2df
parentee94d3c3241d8874e0bcdd962dab927efc4b2af4 (diff)
gnu: Add perl-yaml-pp.
* gnu/packages/perl.scm (perl-yaml-pp): New variable. Change-Id: I25be12c85a6b07e721cc8ec834b0861eaf2a26ff
-rw-r--r--gnu/packages/perl.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 7128b570c14..32563275d4d 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -14467,6 +14467,31 @@ on the YAML 1.0 specification.")
best YAML support to date.")
(license license:perl-license)))
+(define-public perl-yaml-pp
+ (package
+ (name "perl-yaml-pp")
+ (version "0.39.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://cpan/authors/id/T/TI/TINITA/"
+ "YAML-PP-v" version ".tar.gz"))
+ (sha256
+ (base32 "0n4z2kmjjhn9k1n3m7kpckrfzkky46zlqyw2a2zdqxqjg1jkrx9j"))))
+ (build-system perl-build-system)
+ ;; Required for tests
+ (native-inputs
+ (list perl-test-deep
+ perl-test-warn
+ perl-tie-ixhash))
+ (synopsis "YAML 1.2 processor")
+ (description
+ "@code{YAML::PP} is a modular YAML processor. It aims to support YAML
+1.2 and YAML 1.1.")
+ (home-page "https://metacpan.org/dist/YAML-PP")
+ (license (package-license perl))))
+
(define-public perl-yaml-tiny
(package
(name "perl-yaml-tiny")