mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add perl-xml-simple.
* gnu/packages/xml.scm (perl-xml-simple): New variable.
This commit is contained in:
parent
22e32e6938
commit
535dc6cf95
1 changed files with 23 additions and 0 deletions
|
@ -140,6 +140,29 @@ (define-public perl-xml-parser
|
||||||
given at XML::Parser creation time.")
|
given at XML::Parser creation time.")
|
||||||
(home-page "http://search.cpan.org/~toddr/XML-Parser-2.41/Parser.pm")))
|
(home-page "http://search.cpan.org/~toddr/XML-Parser-2.41/Parser.pm")))
|
||||||
|
|
||||||
|
(define-public perl-xml-simple
|
||||||
|
(package
|
||||||
|
(name "perl-xml-simple")
|
||||||
|
(version "2.20")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://cpan/authors/id/G/GR/GRANTM/XML-Simple-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0jj3jiray1l4pi9wkjcpxjc3v431whdwx5aqnhgdm4i7h3817zsw"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("perl-xml-parser" ,perl-xml-parser)))
|
||||||
|
(license (package-license perl))
|
||||||
|
(synopsis "Perl module for easy reading/writing of XML files")
|
||||||
|
(description
|
||||||
|
"The XML::Simple module provides a simple API layer on top of an
|
||||||
|
underlying XML parsing module (either XML::Parser or one of the SAX2
|
||||||
|
parser modules).")
|
||||||
|
(home-page "http://search.cpan.org/~grantm/XML-Simple-2.20/lib/XML/Simple.pm")))
|
||||||
|
|
||||||
(define-public xmlto
|
(define-public xmlto
|
||||||
(package
|
(package
|
||||||
(name "xmlto")
|
(name "xmlto")
|
||||||
|
|
Loading…
Reference in a new issue