gnu: Add emacs-git-gutter-fringe.

* gnu/packages/emacs-xyz.scm (emacs-git-gutter-fringe): New variable.
This commit is contained in:
Brian Leung 2019-10-14 13:55:09 -07:00
parent 36f6ed2c64
commit 2322c9458c
No known key found for this signature in database
GPG key ID: 3ADC75F013D678F9

View file

@ -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")