mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add Tie-IxHash.
* gnu/packages/perl.scm (perl-tie-ixhash): New variable.
This commit is contained in:
parent
040a52fd75
commit
92503917f7
1 changed files with 22 additions and 0 deletions
|
@ -3617,6 +3617,28 @@ (define-public perl-text-unidecode
|
|||
system.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-tie-ixhash
|
||||
(package
|
||||
(name "perl-tie-ixhash")
|
||||
(version "1.23")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
|
||||
"Tie-IxHash-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
|
||||
(build-system perl-build-system)
|
||||
(home-page "http://search.cpan.org/dist/Tie-IxHash")
|
||||
(synopsis "Ordered associative arrays for Perl")
|
||||
(description "This Perl module implements Perl hashes that preserve the
|
||||
order in which the hash elements were added. The order is not affected when
|
||||
values corresponding to existing keys in the IxHash are changed. The elements
|
||||
can also be set to any arbitrary supplied order. The familiar perl array
|
||||
operations can also be performed on the IxHash.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-time-local
|
||||
(package
|
||||
(name "perl-time-local")
|
||||
|
|
Loading…
Reference in a new issue