gnu: Add CPAN-Meta-YAML.

* gnu/packages/perl.scm (perl-cpan-meta-yaml): New variable.
master
Eric Bavier 2015-03-05 15:02:46 -06:00
parent 90fb2e2467
commit 6f2768c3f0
1 changed files with 21 additions and 0 deletions

View File

@ -645,5 +645,26 @@ adding more and more constraints, and will reduce them to the simplest
representation.")
(license (package-license perl))))
(define-public perl-cpan-meta-yaml
(package
(name "perl-cpan-meta-yaml")
(version "0.012")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
"CPAN-Meta-YAML-" version ".tar.gz"))
(sha256
(base32
"0a0d62w8d81kkas4j1h48znk0f0vrpibl31gvz9r8hm77dbqqwkw"))))
(build-system perl-build-system)
(arguments
`(#:tests? #f)) ;Tests require Test::More >= 0.99
(home-page "http://search.cpan.org/dist/CPAN-Meta-YAML")
(synopsis "Read and write a subset of YAML for CPAN Meta files")
(description "This module implements a subset of the YAML specification
for use in reading and writing CPAN metadata files like META.yml and
MYMETA.yml.")
(license (package-license perl))))
;;; END: Core module overrides