mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add emacs-ov.
* gnu/packages/emacs.scm (emacs-ov): New variable.
This commit is contained in:
parent
57d30004e5
commit
87470116e6
1 changed files with 20 additions and 0 deletions
|
@ -12568,3 +12568,23 @@ (define-public emacs-gtk-look
|
|||
classes like @command{<gtk-window>}.
|
||||
@end itemize\n")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-ov
|
||||
(package
|
||||
(name "emacs-ov")
|
||||
(version "1.0.6")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/ShingoFukuyama/ov.el.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/ShingoFukuyama/ov.el")
|
||||
(synopsis "Overlay library for Emacs Lisp")
|
||||
(description "@code{ov.el} provides a simple way to manipulate overlays in
|
||||
Emacs.")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue