gnu: Add emacs-linum-relative.
* gnu/packages/emacs.scm (emacs-linum-relative): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
239cf024b4
commit
c86c19914a
|
@ -3963,6 +3963,27 @@ abbreviation and automatically expand it into function templates.")
|
||||||
memoizing functions.")
|
memoizing functions.")
|
||||||
(license license:unlicense)))
|
(license license:unlicense)))
|
||||||
|
|
||||||
|
(define-public emacs-linum-relative
|
||||||
|
(package
|
||||||
|
(name "emacs-linum-relative")
|
||||||
|
(version "0.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"https://github.com/coldnew/linum-relative/archive/"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0s4frvr27866lw1rn3jal9wj5rkz9fx4yiszqv7w06azsdgsqksv"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/coldnew/linum-relative")
|
||||||
|
(synopsis "Relative line numbering for Emacs")
|
||||||
|
(description "@code{emacs-linum-relative} displays the relative line
|
||||||
|
number on the left margin in Emacs.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public emacs-idle-highlight
|
(define-public emacs-idle-highlight
|
||||||
(package
|
(package
|
||||||
(name "emacs-idle-highlight")
|
(name "emacs-idle-highlight")
|
||||||
|
|
Loading…
Reference in New Issue