diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-21 14:39:25 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-21 14:50:12 +0200 |
commit | f09ba7d255891b64cff3ab4a57f378c3bd98670c (patch) | |
tree | bc83296ee571c7e3c67c5bc950a753dfcf71b111 | |
parent | 5f1e1ebb0bbfba5dac07cde4f738be86d31eedbd (diff) | |
download | guix-f09ba7d255891b64cff3ab4a57f378c3bd98670c.tar guix-f09ba7d255891b64cff3ab4a57f378c3bd98670c.tar.gz |
gnu: Add emacs-url-http-oauth.
* gnu/packages/emacs-xyz.scm (emacs-url-http-oauth): New variable.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index ef22fa07b6..bb2eebc83d 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -31125,6 +31125,25 @@ top of the old defadvice system, to help users of defadvice move to the new advice system without dropping support for Emacs<24.4.") (license license:gpl3+))) +(define-public emacs-url-http-oauth + (package + (name "emacs-url-http-oauth") + (version "0.8.3") + (source + (origin + (method url-fetch) + (uri (string-append + "https://elpa.gnu.org/packages/url-http-oauth-" version + ".tar")) + (sha256 (base32 + "1vcbx8rpzvx4v4g7iyja6kpsqidaiy2xzj7glrwwzhppkbp0xkvy")))) + (build-system emacs-build-system) + (home-page "https://elpa.gnu.org/packages/url-http-oauth.html") + (synopsis "OAuth 2.0 for URL library") + (description + "Url HTTP Oauth adds OAuth 2.0 support to Emacs's URL library.") + (license license:gpl3+))) + (define-public emacs-url-http-ntlm (package (name "emacs-url-http-ntlm") |