mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add Perl YAML.
* gnu/packages/perl.scm (perl-yaml): New variable.
This commit is contained in:
parent
41778634e2
commit
419dd41152
1 changed files with 21 additions and 0 deletions
|
@ -4563,6 +4563,27 @@ (define-public perl-variable-magic
|
|||
having to write a single line of XS.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-yaml
|
||||
(package
|
||||
(name "perl-yaml")
|
||||
(version "1.14")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
|
||||
"YAML-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0sswbkyisgny7ksw34n7zdaxrhsbbn7dgjb9gjybpzhcnml476kc"))))
|
||||
(build-system perl-build-system)
|
||||
(native-inputs
|
||||
`(("perl-test-yaml" ,perl-test-yaml)))
|
||||
(home-page "http://search.cpan.org/dist/YAML")
|
||||
(synopsis "YAML for Perl")
|
||||
(description "The YAML.pm module implements a YAML Loader and Dumper based
|
||||
on the YAML 1.0 specification.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-yaml-tiny
|
||||
(package
|
||||
(name "perl-yaml-tiny")
|
||||
|
|
Loading…
Reference in a new issue