diff options
author | Leo Famulari <leo@famulari.name> | 2016-10-28 13:40:10 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-10-28 13:40:17 -0400 |
commit | a6447e7fb6a12f4a15b6bcffe09d97f78564f325 (patch) | |
tree | a99f5d0348c947b7eb002238bcf4293813081a5c /gnu/packages/emacs.scm | |
parent | aa98b3b2738ea84a5a68b0680fdd4f174b94a9ca (diff) | |
parent | e359b31a60b29209a202a4012069f551bae8870f (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/emacs.scm')
-rw-r--r-- | gnu/packages/emacs.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 2a275d0672..5131628178 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -2228,6 +2228,26 @@ perspective only its buffers are available by default.") ;; the Expat license. (license license:gpl3+))) +(define-public emacs-request + (package + (name "emacs-request") + (version "0.2.0") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/tkf/emacs-request/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0sll9g9x15jxrdr58pdxx4iz74rnjd43q521iqm890i6hmkrgwap")))) + (build-system emacs-build-system) + (home-page "https://github.com/tkf/emacs-request") + (synopsis "Package for speaking HTTP in Emacs Lisp") + (description "This package provides a HTTP request library with multiple +backends. It supports url.el which is shipped with Emacs and the curl command +line program.") + (license license:gpl3+))) + (define-public emacs-rudel (package (name "emacs-rudel") |