diff options
author | Mark H Weaver <[email protected]> | 2018-01-23 17:01:07 -0500 |
---|---|---|
committer | Mark H Weaver <[email protected]> | 2018-01-23 17:01:07 -0500 |
commit | a102d359a68ce7219a1880e47dd6f9332cbbce3a (patch) | |
tree | d879e718f08d776ad84c456c91a349e59941d1f2 /gnu/packages/emacs.scm | |
parent | 07b8ea841e1e2eda5b367f35cf68d23d0520cc4d (diff) | |
parent | f3a13a21e50fa3751fc39e5768ea6843bfc19df2 (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/emacs.scm')
-rw-r--r-- | gnu/packages/emacs.scm | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index c981200002..4464376a1f 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2014, 2015, 2016, 2017 Mark H Weaver <[email protected]> ;;; Copyright © 2014, 2015, 2016, 2017 Alex Kost <[email protected]> ;;; Copyright © 2015 Federico Beffa <[email protected]> -;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus <[email protected]> +;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus <[email protected]> ;;; Copyright © 2016, 2017 Chris Marusich <[email protected]> ;;; Copyright © 2015, 2016 Christopher Allan Webber <[email protected]> ;;; Copyright © 2016 Adriano Peluso <[email protected]> @@ -3169,15 +3169,16 @@ perspective only its buffers are available by default.") (define-public emacs-request (package (name "emacs-request") - (version "0.2.0") + (version "0.3.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")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/tkf/emacs-request.git") + (commit (string-append "v" version)))) + (file-name (string-append name "-" version "-checkout")) (sha256 - (base32 "0sll9g9x15jxrdr58pdxx4iz74rnjd43q521iqm890i6hmkrgwap")))) + (base32 + "0wyxqbb35yqf6ci47531lk32d6fppamx9d8826kdz983vm87him7")))) (build-system emacs-build-system) (home-page "https://github.com/tkf/emacs-request") (synopsis "Package for speaking HTTP in Emacs Lisp") @@ -6463,7 +6464,7 @@ It supports dired buffers and opens them in tree mode at destination.") It is meant to quickly generate linear ranges, e.g. 5, 6, 7, 8. Some elisp proficiency is an advantage, since you can transform your numeric range with an elisp expression.") - (license license:gpl3+))) + (license license:gpl3+))) (define-public emacs-bash-completion (package |