diff options
author | phodina <phodina@protonmail.com> | 2021-11-04 21:36:27 +0000 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-11-06 10:43:29 +0100 |
commit | 2a66d806a85000c72472ff521a26fea8d77cce83 (patch) | |
tree | b8de657e0d4357085cfcd57d0eb7c5c142c2f9d1 /gnu | |
parent | 68abfea5c28d7e1749341360fb0283a77d823690 (diff) |
gnu: Add emacs-soap-client.
* gnu/packages/emacs-xyz.scm (emacs-soap-client): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index c8e6a3f221..bd53ce00da 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -25715,6 +25715,24 @@ advice system without dropping support for Emacs<24.4.") (description "This package provides a NTLM handler for the URL package.") (license license:gpl3+))) +(define-public emacs-soap-client + (package + (name "emacs-soap-client") + (version "3.2.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://elpa.gnu.org/packages/" + "soap-client-" version ".tar")) + (sha256 + (base32 "1s0bwnip22nj6kgjadd4zlj9j729hiyyjb66sr51i2mddnf9i95s")))) + (build-system emacs-build-system) + (home-page "httpa://elpa.gnu.org/packages/soap-client.html") + (synopsis "Access SOAP web services") + (description + "This package provides a SOAP client to access web services.") + (license license:gpl3+))) + (define-public emacs-evil-traces (let ((commit "1931e3ea2c64b4aec393a9c25063c330deff55e3") (revision "2")) |