gnu: Add perl-text-xslate.

* gnu/packages/perl.scm (perl-text-xslate): New variable.

Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
This commit is contained in:
Antero Mejr 2023-06-04 17:42:37 +00:00 committed by Danny Milosavljevic
parent d356558198
commit d2b7d14db4
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -13588,6 +13588,32 @@ minimal handling of languages which doesn't use whitespaces between
words (like Chinese and Japanese) is supported.")
(license (package-license perl))))
(define-public perl-text-xslate
(package
(name "perl-text-xslate")
(version "3.5.9")
(source (origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/S/SK/SKAJI/Text-Xslate-v" version
".tar.gz"))
(sha256
(base32
"103lhyqqv53x9rqsnxcba3pc4qkbwnjsw3gpyd7rjm0aw65mrj20"))))
(build-system perl-build-system)
(native-inputs (list perl-file-copy-recursive
perl-module-build
perl-module-build-xsutil
perl-test-requires))
(propagated-inputs (list perl-data-messagepack perl-mouse))
(home-page "https://metacpan.org/release/Text-Xslate")
(synopsis "Scalable template engine for Perl5")
(description
"Xslate is a template engine, tuned for persistent applications, safe as
an HTML generator, and with rich features. The core design principle is that
template logic does not have access outside the template without permission.")
(license (package-license perl))))
(define-public perl-regexp-pattern
(package
(name "perl-regexp-pattern")