[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/05: gnu: emacs-diff-hl: Update to 1.8.6.
From: |
guix-commits |
Subject: |
05/05: gnu: emacs-diff-hl: Update to 1.8.6. |
Date: |
Fri, 31 May 2019 04:22:34 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 2e62ba46e2dc6f27398a65eb157b4ce711ff0e6b
Author: Brian Leung <address@hidden>
Date: Wed May 29 03:17:00 2019 +0200
gnu: emacs-diff-hl: Update to 1.8.6.
* gnu/packages/emacs-xyz.scm (emacs-diff-hl): Update to 1.8.6.
[source]: Fetch from git.
Signed-off-by: Ricardo Wurmus <address@hidden>
---
gnu/packages/emacs-xyz.scm | 35 ++++++++++++++++++-----------------
1 file changed, 18 insertions(+), 17 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 42fb57a..c2d515e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -7073,26 +7073,27 @@ actually changing the buffer's text.")
(license license:gpl3+)))
(define-public emacs-diff-hl
- (package
- (name "emacs-diff-hl")
- (version "1.8.5")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://elpa.gnu.org/packages/diff-hl-"
- version ".tar"))
- (sha256
+ (package
+ (name "emacs-diff-hl")
+ (version "1.8.6")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dgutov/diff-hl")
+ (commit version)))
+ (sha256
(base32
- "1vxc7z7c2qs0mx7l5sa4sybi5qbzv0s79flj74p1ynw8dl3qxg3d"))))
- (build-system emacs-build-system)
- (home-page "https://github.com/dgutov/diff-hl")
- (synopsis
- "Highlight uncommitted changes using VC")
- (description
- "@code{diff-hl-mode} highlights uncommitted changes on the side of the
+ "1xlsg728mz3cwhrsqvisa0aidic67nymd9g7h4c1h3q63j39yb2s"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/dgutov/diff-hl")
+ (synopsis
+ "Highlight uncommitted changes using VC")
+ (description
+ "@code{diff-hl-mode} highlights uncommitted changes on the side of the
window (using the fringe, by default), allows you to jump between
the hunks and revert them selectively.")
- (license license:gpl3+)))
+ (license license:gpl3+)))
(define-public emacs-diminish
(package