mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add Parse-CPAN-Meta.
* gnu/packages/perl.scm (perl-parse-cpan-meta): New variable.
This commit is contained in:
parent
6f2768c3f0
commit
70e834625f
1 changed files with 21 additions and 0 deletions
|
@ -667,4 +667,25 @@ (define-public perl-cpan-meta-yaml
|
|||
MYMETA.yml.")
|
||||
(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
|
||||
|
|
Loading…
Reference in a new issue