[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#67963] [PATCH v2 36/37] gnu: Add perl-soap-lite.
From: |
Felix Lechner |
Subject: |
[bug#67963] [PATCH v2 36/37] gnu: Add perl-soap-lite. |
Date: |
Tue, 16 Jan 2024 14:13:14 -0800 |
* gnu/packages/web.scm (perl-soap-lite): New variable.
Change-Id: Ieae1558e6160acb8801d1b406a0698bbcda56670
---
gnu/packages/web.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 3f6c2bac0f..d9e38c723a 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -4561,6 +4561,42 @@ (define-public perl-plack-test-externalserver
either mocked HTTP or a locally spawned server.")
(license license:perl-license)))
+(define-public perl-soap-lite
+ (package
+ (name "perl-soap-lite")
+ (version "1.27")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://cpan/authors/id/P/PH/PHRED/SOAP-Lite-"
+ version ".tar.gz"))
+ (sha256
+ (base32 "00fkvmnxiy5mr45rj5qmxmflw0xdkw2gihm48iha2i8smdmi0ng3"))))
+ (build-system perl-build-system)
+ (native-inputs (list perl-io-stringy
+ perl-test-mockobject
+ perl-test-warn
+ perl-test-xml
+ perl-xml-parser-lite))
+ (propagated-inputs (list perl-class-inspector
+ perl-dime-tools
+ perl-fcgi
+ perl-http-daemon
+ perl-io-sessiondata
+ perl-io-socket-ssl
+ perl-libwww
+ perl-lwp-protocol-https
+ perl-mime-tools
+ perl-task-weaken
+ perl-uri
+ perl-xml-parser))
+ (home-page "https://metacpan.org/release/SOAP-Lite")
+ (synopsis "Perl's Web Services Toolkit")
+ (description "SOAP::Lite is a collection of Perl modules which
+provides a simple and lightweight interface to the Simple Object
+Access Protocol (SOAP) both on client and server side.")
+ (license license:perl-license)))
+
(define-public perl-test-tcp
(package
(name "perl-test-tcp")
--
2.41.0
- [bug#67963] [PATCH v2 15/37] gnu: Add perl-graphviz., (continued)
- [bug#67963] [PATCH v2 15/37] gnu: Add perl-graphviz., Felix Lechner, 2024/01/16
- [bug#67963] [PATCH v2 20/37] gnu: Add perl-xml-semanticdiff., Felix Lechner, 2024/01/16
- [bug#67963] [PATCH v2 33/37] gnu: Add perl-dbix-class-dynamicdefault., Felix Lechner, 2024/01/16
- [bug#67963] [PATCH v2 17/37] gnu: Add perl-package-variant., Felix Lechner, 2024/01/16
- [bug#67963] [PATCH v2 37/37] gnu: Add perl-search-estraier., Felix Lechner, 2024/01/16
- [bug#67963] [PATCH v2 31/37] gnu: Add perl-sql-translator., Felix Lechner, 2024/01/16
- [bug#67963] [PATCH v2 34/37] gnu: Add perl-dbix-class-timestamp., Felix Lechner, 2024/01/16
- [bug#67963] [PATCH v2 23/37] gnu: Add perl-user-identity., Felix Lechner, 2024/01/16
- [bug#67963] [PATCH v2 29/37] gnu: Add perl-text-recordparser., Felix Lechner, 2024/01/16
- [bug#67963] [PATCH v2 26/37] gnu: Add perl-text-reform., Felix Lechner, 2024/01/16
- [bug#67963] [PATCH v2 36/37] gnu: Add perl-soap-lite.,
Felix Lechner <=