gnu: Add emacs-chronometrist.

* gnu/packages/emacs-xyz.scm (emacs-chronometrist): New variable.
This commit is contained in:
Nicolas Goaziou 2020-03-25 17:34:38 +01:00
parent 8b19fa51a4
commit 0557618dbe
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -1728,6 +1728,39 @@ (define-public emacs-calfw
Emacs buffer.") Emacs buffer.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-chronometrist
(package
(name "emacs-chronometrist")
(version "0.4.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://framagit.org/contrapunctus/chronometrist.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1ccy7qz1wcmggqlf3hwigbqq4wrx1amds4x9bxz9py6bypglyjc5"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-dash" ,emacs-dash)
("emacs-s" ,emacs-s)))
(home-page "https://framagit.org/contrapunctus/chronometrist")
(synopsis "Time tracker for Emacs")
(description "Chronometrist is a time tracker in Emacs, largely modelled
after the Android application, @emph{A Time Tracker}.
Its features are:
@itemize
@item Simple and efficient to use,
@item Displays useful information about your time usage,
@item Support for both mouse and keyboard,
@item Human errors in tracking are easily fixed by editing a plain text file,
@item Hooks to let you perform arbitrary actions when starting/stopping tasks.
@end itemize")
;; Software is dual-licensed.
(license (list license:unlicense license:wtfpl2))))
(define-public emacs-direnv (define-public emacs-direnv
(package (package
(name "emacs-direnv") (name "emacs-direnv")