[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add emacs-chronometrist.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add emacs-chronometrist. |
Date: |
Wed, 25 Mar 2020 12:34:52 -0400 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 0557618 gnu: Add emacs-chronometrist.
0557618 is described below
commit 0557618dbea23afc1d2a0ee2d43d504c35e2f089
Author: Nicolas Goaziou <address@hidden>
AuthorDate: Wed Mar 25 17:34:38 2020 +0100
gnu: Add emacs-chronometrist.
* gnu/packages/emacs-xyz.scm (emacs-chronometrist): New variable.
---
gnu/packages/emacs-xyz.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7b67cc3..2bfa5f9 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1728,6 +1728,39 @@ searches. Unlike code@{emacs-wiki.el}, it can be
combined with any format.")
Emacs buffer.")
(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
(package
(name "emacs-direnv")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add emacs-chronometrist.,
guix-commits <=