* [bug#46694] [PATCH] gnu: Add dstask.
@ 2021-02-21 20:55 Stefan Reichör
2021-02-22 19:01 ` bug#46694: Léo Le Bouter via Guix-patches via
0 siblings, 1 reply; 2+ messages in thread
From: Stefan Reichör @ 2021-02-21 20:55 UTC (permalink / raw)
To: 46694; +Cc: Stefan Reichör
* gnu/packages/task-management.scm (dstask): New variable.
---
gnu/packages/task-management.scm | 48 ++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/gnu/packages/task-management.scm b/gnu/packages/task-management.scm
index 6bd033ba2b..e6b9e33c3d 100644
--- a/gnu/packages/task-management.scm
+++ b/gnu/packages/task-management.scm
@@ -2,6 +2,7 @@
;;; Copyright © 2015 Tomáš Čech <sleep_walker@suse.cz>
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2021 Eric Bavier <bavier@posteo.net>
+;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -36,6 +37,7 @@
#:use-module (guix git-download)
#:use-module (guix utils)
#:use-module (guix build-system cmake)
+ #:use-module (guix build-system go)
#:use-module (guix build-system meson))
(define-public taskwarrior
@@ -66,6 +68,52 @@ Done time management method. It supports network synchronization, filtering
and querying data, exposing task data in multiple formats to other tools.")
(license license:expat)))
+(define-public dstask
+ (package
+ (name "dstask")
+ (version "0.24.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/naggie/dstask")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "03rl2wh58xd6a80ji43c7ak3h0ysi3ddg570pn8ry24s7s45zsz2"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/naggie/dstask"
+ #:install-source? #f
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'build
+ (lambda* (#:key import-path #:allow-other-keys)
+ (with-directory-excursion (string-append "src/" import-path)
+ (invoke "go" "build" "-o" "dstask" "cmd/dstask/main.go")
+ (invoke "go" "build" "-o" "dstask-import"
+ "cmd/dstask-import/main.go"))))
+ (replace 'install
+ (lambda* (#:key import-path outputs #:allow-other-keys)
+ (with-directory-excursion (string-append "src/" import-path)
+ (let* ((out (assoc-ref outputs "out"))
+ (bindir (string-append out "/bin"))
+ (zsh-completion (string-append
+ out "/share/zsh/site-functions/_dstask"))
+ (bash-completion
+ (string-append
+ out "/share/bash-completion/completions/_dstask")))
+ (install-file "dstask" bindir)
+ (install-file "dstask-import" bindir)
+ (install-file ".dstask-bash-completions.sh" bash-completion)
+ (install-file ".dstask-zsh-completions.sh" zsh-completion))))))))
+ (synopsis "CLI-based TODO manager with git-based sync + markdown notes per task")
+ (description "dstask is a personal task tracker that uses git for
+synchronization. It offers a note command to attach a Markdown based note to
+a task.")
+ (home-page "https://github.com/naggie/dstask")
+ (license license:expat)))
+
(define-public blanket
(package
(name "blanket")
--
2.25.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#46694:
2021-02-21 20:55 [bug#46694] [PATCH] gnu: Add dstask Stefan Reichör
@ 2021-02-22 19:01 ` Léo Le Bouter via Guix-patches via
0 siblings, 0 replies; 2+ messages in thread
From: Léo Le Bouter via Guix-patches via @ 2021-02-22 19:01 UTC (permalink / raw)
To: 46694-done
[-- Attachment #1: Type: text/plain, Size: 139 bytes --]
Adapted 'install phase so it returns #t to silence GNU Guile warning.
Pushed as 515f561370ec0674f0484d074b53887c82e81d97
Thank you!
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-02-22 19:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-21 20:55 [bug#46694] [PATCH] gnu: Add dstask Stefan Reichör
2021-02-22 19:01 ` bug#46694: Léo Le Bouter via Guix-patches via
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).