mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add worklog.
* gnu/packages/task-management.scm (worklog): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
b840c50b3f
commit
090b3823b8
1 changed files with 35 additions and 0 deletions
|
@ -34,6 +34,7 @@ (define-module (gnu packages task-management)
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (gnu packages lua)
|
#:use-module (gnu packages lua)
|
||||||
|
#:use-module (gnu packages ncurses)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
#:use-module (gnu packages python-xyz)
|
#:use-module (gnu packages python-xyz)
|
||||||
|
@ -144,6 +145,40 @@ (define-public taskwarrior
|
||||||
and querying data, exposing task data in multiple formats to other tools.")
|
and querying data, exposing task data in multiple formats to other tools.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public worklog
|
||||||
|
(let ((commit "0f545ad6697ef4de7f68d92cd7cc5c6a4c60517b")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "worklog")
|
||||||
|
(version (git-version "2.1" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/atsb/worklog")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "18dkmy168ks9gcnfqri1rfl0ag0dmh9d6ppfmjfcdd6g9gvi6zll"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:make-flags
|
||||||
|
,#~(list (string-append "CC=" #$(cc-for-target))
|
||||||
|
(string-append "BIN=" #$output "/bin")
|
||||||
|
(string-append "MAN=" #$output "/share/man"))
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(delete 'configure))
|
||||||
|
#:tests? #f)) ; No "check" target.
|
||||||
|
(inputs (list ncurses))
|
||||||
|
(home-page "https://github.com/atsb/worklog")
|
||||||
|
(synopsis "Program keeping track of time spent on different projects")
|
||||||
|
(description
|
||||||
|
"@code{worklog} is a program that helps you keep track of your time.
|
||||||
|
@code{worklog} is a simple ncurses based based program that runs a clock and
|
||||||
|
logs time to a logfile.")
|
||||||
|
(license license:public-domain))))
|
||||||
|
|
||||||
(define-public dstask
|
(define-public dstask
|
||||||
(package
|
(package
|
||||||
(name "dstask")
|
(name "dstask")
|
||||||
|
|
Loading…
Reference in a new issue