mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: Add emacs-track-changes.
* gnu/packages/emacs-xyz.scm (emacs-track-changes): New variable. Change-Id: I04346cdf7385f880ac8f3ac29177baf233027fc9 Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
86a49fc9a3
commit
37ca28fa4e
1 changed files with 21 additions and 0 deletions
|
@ -23118,6 +23118,27 @@ (define-public emacs-circe
|
||||||
want to use it.")
|
want to use it.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
|
(define-public emacs-track-changes
|
||||||
|
(package
|
||||||
|
(name "emacs-track-changes")
|
||||||
|
(version "1.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://elpa.gnu.org/packages/track-changes-"
|
||||||
|
version ".tar"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0al6a1xjs6p2pn6z976pnmfqz2x5xcz99b5gkdzz90ywbn7018m4"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://elpa.gnu.org/packages/track-changes.html")
|
||||||
|
(synopsis "Abstraction library which handles accumulating file changes")
|
||||||
|
(description
|
||||||
|
"This library is a layer of abstraction above
|
||||||
|
@code{before-change-functions} and @code{after-change-functions} which takes
|
||||||
|
care of accumulating changes until a time when its client finds it convenient
|
||||||
|
to react to them.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-tracking
|
(define-public emacs-tracking
|
||||||
(package
|
(package
|
||||||
(inherit emacs-circe)
|
(inherit emacs-circe)
|
||||||
|
|
Loading…
Reference in a new issue