gnu: Add Parse-CPAN-Meta.

* gnu/packages/perl.scm (perl-parse-cpan-meta): New variable.
This commit is contained in:
Eric Bavier 2015-03-05 15:12:18 -06:00
parent 6f2768c3f0
commit 70e834625f

View file

@ -667,4 +667,25 @@ (define-public perl-cpan-meta-yaml
MYMETA.yml.") MYMETA.yml.")
(license (package-license perl)))) (license (package-license perl))))
(define-public perl-parse-cpan-meta
(package
(name "perl-parse-cpan-meta")
(version "1.4414")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
"Parse-CPAN-Meta-" version ".tar.gz"))
(sha256
(base32
"06ya2rg599qanqb1fxiyrd489mvmdgzbw4ph23hwjwpv9lahhxnd"))))
(build-system perl-build-system)
(propagated-inputs
`(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
(home-page "http://search.cpan.org/dist/Parse-CPAN-Meta")
(synopsis "Parse META.yml and META.json CPAN metadata files")
(description "Parse::CPAN::Meta is a parser for META.json and META.yml
files, using JSON::PP and/or CPAN::Meta::YAML.")
(license (package-license perl))))
;;; END: Core module overrides ;;; END: Core module overrides