diff options
author | gemmaro <[email protected]> | 2025-02-05 12:59:03 +0900 |
---|---|---|
committer | Nicolas Goaziou <[email protected]> | 2025-02-22 15:24:41 +0100 |
commit | 49626dc2b8de29007e57b126f8f0fb4253d13f63 (patch) | |
tree | c9204c0e06816851472a805a721f484e41afd5d3 /gnu | |
parent | 093387920690ac38cc9d84cf2d4bc8d38c249f7c (diff) |
gnu: Add perl-specio-library-path-tiny.
* gnu/packages/perl.scm (perl-specio-library-path-tiny): New variable.
Signed-off-by: Nicolas Goaziou <[email protected]>
Change-Id: I6334cc67fef6fc1fdbbc2d68aabc36e80b866834
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/perl.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index ce628d5ece..5615ef71bf 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -10293,6 +10293,29 @@ all. Instead, you can explicitly check a value against a type, and optionally coerce values to that type.") (license license:artistic2.0))) +(define-public perl-specio-library-path-tiny + (package + (name "perl-specio-library-path-tiny") + (version "0.05") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/D/DR/DROLSKY/Specio-Library-Path-Tiny-" + version ".tar.gz")) + (sha256 + (base32 "0lbsqb3l5ra2k6481dkc7m1zk92fjpwnvgvql1k2rsyspjwhppv0")))) + (build-system perl-build-system) + (native-inputs (list perl-file-pushd perl-test-fatal)) + (propagated-inputs (list perl-path-tiny perl-specio)) + (home-page "https://metacpan.org/release/Specio-Library-Path-Tiny") + (synopsis "Types and coercions for Specio") + (description + "This library provides a set of @code{Path::Tiny} types and coercions for +Specio. These types can be used with @code{Moose}, @code{Moo}, +@code{Params::ValidationCompiler}, and other modules.") + (license license:asl2.0))) + (define-public perl-spiffy (package (name "perl-spiffy") |