mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: emacs-diff-hl: Update to 1.9.0.
* gnu/packages/emacs-xyz.scm (emacs-diff-hl): Update to 1.9.0.
This commit is contained in:
parent
958115c980
commit
a3b5b86db7
1 changed files with 21 additions and 19 deletions
|
@ -14663,27 +14663,29 @@ (define-public emacs-adaptive-wrap
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-diff-hl
|
(define-public emacs-diff-hl
|
||||||
(package
|
;;; XXX: Latest release is not tagged. Use commit matching version bump.
|
||||||
(name "emacs-diff-hl")
|
(let ((commit "37b00f3bad841e131d69442a89cbebc3041d996b"))
|
||||||
(version "1.8.8")
|
(package
|
||||||
(source
|
(name "emacs-diff-hl")
|
||||||
(origin
|
(version "1.9.0")
|
||||||
(method git-fetch)
|
(source
|
||||||
(uri (git-reference
|
(origin
|
||||||
(url "https://github.com/dgutov/diff-hl")
|
(method git-fetch)
|
||||||
(commit version)))
|
(uri (git-reference
|
||||||
(file-name (git-file-name name version))
|
(url "https://github.com/dgutov/diff-hl")
|
||||||
(sha256
|
(commit commit)))
|
||||||
(base32 "075klzf66z1rvhpxv4j694pdkmi7f4fpw6c8q4ncz0h4y5wdbl8w"))))
|
(file-name (git-file-name name version))
|
||||||
(build-system emacs-build-system)
|
(sha256
|
||||||
(home-page "https://github.com/dgutov/diff-hl")
|
(base32 "0s3fcwk6c99n2q25bf0a33lphr9mcrxmvr5wz8qsj86jfbyi1is1"))))
|
||||||
(synopsis
|
(build-system emacs-build-system)
|
||||||
"Highlight uncommitted changes using VC")
|
(home-page "https://github.com/dgutov/diff-hl")
|
||||||
(description
|
(synopsis
|
||||||
"@code{diff-hl-mode} highlights uncommitted changes on the side of the
|
"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
|
window (using the fringe, by default), allows you to jump between
|
||||||
the hunks and revert them selectively.")
|
the hunks and revert them selectively.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-diminish
|
(define-public emacs-diminish
|
||||||
;; XXX: Upstream did not tag last release.
|
;; XXX: Upstream did not tag last release.
|
||||||
|
|
Loading…
Reference in a new issue