mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add emacs-git-gutter-fringe.
* gnu/packages/emacs-xyz.scm (emacs-git-gutter-fringe): New variable.
This commit is contained in:
parent
36f6ed2c64
commit
2322c9458c
1 changed files with 26 additions and 0 deletions
|
@ -2394,6 +2394,32 @@ (define-public emacs-git-gutter
|
|||
display and behaviour is easily customisable.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-git-gutter-fringe
|
||||
(let ((commit "16226caab44174301f1659f7bf8cc67a76153445")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "emacs-git-gutter-fringe")
|
||||
(version (git-version "0.23" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/syohex/git-gutter-fringe.git")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1y77gjl0yznamdj0f55d418zb75k22izisjg7ikvrfsl2yfqf3pm"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
`(("emacs-git-gutter" ,emacs-git-gutter)
|
||||
("emacs-fringe-helper" ,emacs-fringe-helper)))
|
||||
(home-page "https://github.com/syohex/git-gutter-fringe")
|
||||
(synopsis "See and manage hunks of text in a version control system")
|
||||
(description
|
||||
"This package extends @code{git-gutter} to use the fringe area of a
|
||||
window.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-git-timemachine
|
||||
(package
|
||||
(name "emacs-git-timemachine")
|
||||
|
|
Loading…
Reference in a new issue