gnu: Add Data::Stag.

* gnu/packages/perl.scm (perl-data-stag): New variable.
This commit is contained in:
Ricardo Wurmus 2015-06-02 16:35:58 +02:00
parent 458ee7dcf0
commit c0b1909106
1 changed files with 24 additions and 0 deletions

View File

@ -1118,6 +1118,30 @@ on one page. This results in wanting to page through various pages of data.
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-stag
(package
(name "perl-data-stag")
(version "0.14")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://cpan/authors/id/C/CM/CMUNGALL/"
"Data-Stag-" version ".tar.gz"))
(sha256
(base32
"0ncf4l39ka23nb01jlm6rzxdb5pqbip01x0m38bnvf1gim825caa"))))
(build-system perl-build-system)
(propagated-inputs
`(("perl-io-string" ,perl-io-string)))
(home-page "http://search.cpan.org/dist/Data-Stag")
(synopsis "Structured tags datastructures")
(description
"This module is for manipulating data as hierarchical tag/value
pairs (Structured TAGs or Simple Tree AGgreggates). These datastructures can
be represented as nested arrays, which have the advantage of being native to
Perl.")
(license (package-license perl))))
(define-public perl-data-stream-bulk (define-public perl-data-stream-bulk
(package (package
(name "perl-data-stream-bulk") (name "perl-data-stream-bulk")