mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add XML::Compile::SOAP.
* gnu/packages/xml.scm (perl-xml-compile-soap): New variable.
This commit is contained in:
parent
c1d41b5df3
commit
baeab9b8b9
1 changed files with 28 additions and 0 deletions
|
@ -467,6 +467,34 @@ (define-public perl-xml-compile-cache
|
||||||
"This package provides methods to cache compiled XML translators.")
|
"This package provides methods to cache compiled XML translators.")
|
||||||
(license (package-license perl))))
|
(license (package-license perl))))
|
||||||
|
|
||||||
|
(define-public perl-xml-compile-soap
|
||||||
|
(package
|
||||||
|
(name "perl-xml-compile-soap")
|
||||||
|
(version "3.13")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
|
||||||
|
"XML-Compile-SOAP-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"08qw63l78040nh37xzapbqp43g6s5l67bvskf3dyyizlarjx5mi4"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("perl-file-slurp-tiny" ,perl-file-slurp-tiny)
|
||||||
|
("perl-libwww" ,perl-libwww)
|
||||||
|
("perl-log-report" ,perl-log-report)
|
||||||
|
("perl-xml-compile" ,perl-xml-compile)
|
||||||
|
("perl-xml-compile-cache" ,perl-xml-compile-cache)
|
||||||
|
("perl-xml-compile-tester" ,perl-xml-compile-tester)))
|
||||||
|
(home-page "http://search.cpan.org/dist/XML-Compile-SOAP")
|
||||||
|
(synopsis "Base-class for SOAP implementations")
|
||||||
|
(description
|
||||||
|
"This module provides a class to handle the SOAP protocol. The first
|
||||||
|
implementation is @url{SOAP1.1,
|
||||||
|
http://www.w3.org/TR/2000/NOTE-SOAP-20000508/}, which is still most often
|
||||||
|
used.")
|
||||||
|
(license (package-license perl))))
|
||||||
|
|
||||||
(define-public pugixml
|
(define-public pugixml
|
||||||
(package
|
(package
|
||||||
(name "pugixml")
|
(name "pugixml")
|
||||||
|
|
Loading…
Reference in a new issue