diff options
author | Morgan Smith <Morgan.J.Smith@outlook.com> | 2021-01-17 14:53:43 -0500 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-01-23 18:07:08 +0100 |
commit | 041b1218e524a986b0bd0841f78c3308bff15024 (patch) | |
tree | 653696047fef41aa9d629eed114e7786aab74a72 /gnu | |
parent | 490f5388e94ca700eec46812da3626dbeb84a5d0 (diff) | |
download | guix-041b1218e524a986b0bd0841f78c3308bff15024.tar guix-041b1218e524a986b0bd0841f78c3308bff15024.tar.gz |
gnu: emacs-eshell-syntax-highlighting: Update to 0.3.
* gnu/packages/emacs-xyz.scm (emacs-eshell-syntax-highlighting): Update to 0.3.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 4eda6252fa..480e51e288 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -18313,16 +18313,16 @@ appropriate directory if no @code{eshell} session is active.") (define-public emacs-eshell-syntax-highlighting (package (name "emacs-eshell-syntax-highlighting") - (version "0.2") + (version "0.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/akreisher/eshell-syntax-highlighting") - (commit version))) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0id27874wsb5y169030x8g1ldpa1mnskv1s2j3ygqiyh5fvpfash")))) + (base32 "1fb9aa85a3hx1rcmv71j6sc3y278452p1y4dabpwy07avb6apd0p")))) (build-system emacs-build-system) (home-page "https://github.com/akreisher/eshell-syntax-highlighting") (synopsis "Add syntax highlighting to Eshell") |