mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: Add perl-data-perl.
* gnu/packages/perl.scm (perl-data-perl): New variable.
This commit is contained in:
parent
3a58f45502
commit
3565756f44
1 changed files with 43 additions and 0 deletions
|
@ -1588,6 +1588,49 @@ (define-public perl-data-page
|
||||||
The maths behind this is unfortunately fiddly, hence this module.")
|
The maths behind this is unfortunately fiddly, hence this module.")
|
||||||
(license (package-license perl))))
|
(license (package-license perl))))
|
||||||
|
|
||||||
|
(define-public perl-data-perl
|
||||||
|
(package
|
||||||
|
(name "perl-data-perl")
|
||||||
|
(version "0.002009")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://cpan/authors/id/M/MA/MATTP/Data-Perl-"
|
||||||
|
version
|
||||||
|
".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("perl-test-deep" ,perl-test-deep)
|
||||||
|
("perl-test-fatal" ,perl-test-fatal)
|
||||||
|
("perl-test-output" ,perl-test-output)))
|
||||||
|
(inputs
|
||||||
|
`(("perl-class-method-modifiers"
|
||||||
|
,perl-class-method-modifiers)
|
||||||
|
("perl-module-runtime" ,perl-module-runtime)
|
||||||
|
("perl-role-tiny" ,perl-role-tiny)
|
||||||
|
("perl-strictures" ,perl-strictures)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("perl-list-moreutils" ,perl-list-moreutils)))
|
||||||
|
(home-page
|
||||||
|
"http://search.cpan.org/dist/Data-Perl")
|
||||||
|
(synopsis "Base classes wrapping fundamental Perl data types")
|
||||||
|
(description
|
||||||
|
"@code{Data::Perl} is a container class for the following classes:
|
||||||
|
@itemize
|
||||||
|
@item @code{Data::Perl::Collection::Hash}
|
||||||
|
@item @code{Data::Perl::Collection::Array}
|
||||||
|
@item @code{Data::Perl::String}
|
||||||
|
@item @code{Data::Perl::Number}
|
||||||
|
@item @code{Data::Perl::Counter}
|
||||||
|
@item @code{Data::Perl::Bool}
|
||||||
|
@item @code{Data::Perl::Code}
|
||||||
|
@end itemize")
|
||||||
|
(license perl-license)))
|
||||||
|
|
||||||
(define-public perl-data-stag
|
(define-public perl-data-stag
|
||||||
(package
|
(package
|
||||||
(name "perl-data-stag")
|
(name "perl-data-stag")
|
||||||
|
|
Loading…
Reference in a new issue