~ruther/guix-local

37ca28fa4e1f1ac0ab11ad616cb64585e885ac9b — Lee Thompson 1 year, 4 months ago 86a49fc
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>
1 files changed, 21 insertions(+), 0 deletions(-)

M gnu/packages/emacs-xyz.scm
M gnu/packages/emacs-xyz.scm => gnu/packages/emacs-xyz.scm +21 -0
@@ 23118,6 23118,27 @@ activity in channels in the status bar so it stays out of your way unless you
want to use it.")
      (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
  (package
    (inherit emacs-circe)