gnu: Add emacs-on-screen.

* gnu/packages/emacs.scm (emacs-on-screen): New public variable.
This commit is contained in:
Oleg Pykhalov 2018-05-02 19:13:46 +03:00
parent ca0e2ab00a
commit 47667501f5
No known key found for this signature in database
GPG key ID: 7246E11C69B79569

View file

@ -10031,3 +10031,26 @@ (define-public emacs-wordgen
(description "This package provides functions to generate random words
using user-provided rules.")
(license license:gpl3+)))
(define-public emacs-on-screen
(package
(name "emacs-on-screen")
(version "1.3.2")
(source
(origin
(method url-fetch)
(uri (string-append
"http://elpa.gnu.org/packages/on-screen-" version ".el"))
(file-name (string-append name "-" version ".el"))
(sha256
(base32
"15d18mjgv1pnwl6kf3pr5w64q1322p1l1qlfvnckglwmzy5sl2qv"))))
(build-system emacs-build-system)
(home-page
"https://github.com/michael-heerdegen/on-screen.el")
(synopsis "Guide your eyes while scrolling")
(description
"Scrolling can be distracting because your eyes may lose
orientation. This library implements a minor mode that highlights
the previously visible buffer part after each scroll.")
(license license:gpl3+)))