gnu: Add emacs-janpath-evil-numbers.

* gnu/packages/emacs-xyz.scm (emacs-janpath-evil-numbers): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Brian Leung 2019-04-04 06:10:24 +02:00 committed by Ludovic Courtès
parent 6d511a53cf
commit ab0471e9fc
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 26 additions and 0 deletions

View File

@ -5603,6 +5603,32 @@ go to the second most recent edit, etc. Negative argument, @kbd{C-u -}, is
used for reverse direction.")
(license license:gpl2+)))
(define-public emacs-janpath-evil-numbers
(let ((commit "d988041c1fe6e941dc8d591390750b237f71f524")
(version "0.5")
(revision "1"))
(package
(name "emacs-janpath-evil-numbers")
(version (git-version version revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/janpath/evil-numbers")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"16zixhxxcb83m82f2cfiardfn99j3w41v6vh1qk6j9pplrlfw70v"))))
(build-system emacs-build-system)
(propagated-inputs `(("emacs-evil" ,emacs-evil)))
(home-page "https://github.com/janpath/evil-numbers")
(synopsis "Increment and decrement numeric literals")
(description
"This package provides functionality to search for a number up to the
end of a line and increment or decrement it.")
(license license:gpl3+))))
(define-public emacs-monroe
(package
(name "emacs-monroe")