mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add emacs-shift-number.
* gnu/packages/emacs.scm (emacs-shift-number): New public variable.
This commit is contained in:
parent
b268bf18be
commit
fcd8d4f713
1 changed files with 21 additions and 0 deletions
|
@ -9854,3 +9854,24 @@ (define-public emacs-interactive-align
|
|||
(synopsis "Interactive align-regexp command in Emacs")
|
||||
(description "Interactive align-regexp command in Emacs")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-shift-number
|
||||
(package
|
||||
(name "emacs-shift-number")
|
||||
(version "0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/alezost/shift-number.el"
|
||||
"/archive/" "v" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1g79m0hqn9jgpm565vvh8pdfzndc4vw7xisnh5qysj55qfg8cb1x"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/alezost/shift-number.el")
|
||||
(synopsis "Increase or decrease the number at point")
|
||||
(description "@code{emacs-shift-number} provides commands
|
||||
@code{shift-number-up} to increase and @code{shift-number-down} to
|
||||
decrease the number at point.")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue