;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Tomáš Čech ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages task-management) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (gnu packages linux) #:use-module (gnu packages lua) #:use-module (gnu packages tls) #:use-module (guix download) #:use-module (guix build-system cmake)) (define-public taskwarrior (package (name "taskwarrior") (version "2.5.1") (source (origin (method url-fetch) (uri (string-append "http://taskwarrior.org/download/task-" version ".tar.gz")) (sha256 (base32 "059a9yc58wcicc6xxsjh1ph7k2yrag0spsahp1wqmsq6h7jwwyyq")))) (build-system cmake-build-system) (inputs `(("gnutls" ,gnutls) ("lua" ,lua) ("util-linux" ,util-linux))) (arguments `(#:tests? #f ; No tests implemented. #:phases (modify-phases %standard-phases (add-before 'patch-source-shebangs 'remove-broken-symlinks (lambda _ ;; These files are broken symlinks - delete them. (delete-file "src/cal") (delete-file "src/calendar") (delete-file "src/tw")))))) (home-page "http://taskwarrior.org") (synopsis "Command line task manager") (description "Taskwarrior is a command-line task manager following the Getting Things Done time management method. It supports network synchronization, filtering and querying data, exposing task data in multiple formats to other tools.") (license license:expat))) ='/guix/log/gnu/packages/calendar.scm?id=74d9a10e9ff13e7e8f7128b784ec438997139ae4'>calendar.scm
AgeCommit message (Expand)Author
2024-09-28gnu: remind: Update to 05.00.05....* gnu/packages/calendar.scm (remind): Update to 05.00.05. [properties]: Add tcl output synopsis. [arguments]<#:phases>: Update list of files to include in tcl output. There's only one tcltk script now. [native-inputs]: Add tzdata. Change-Id: I729d48a8e538039ef5d8c9cb8bd232b3946b5f76 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Luís Henriques
2024-08-31gnu: date: Fix build with newer tzdata....* gnu/packages/patches/date-ignore-zonenow.patch: New patch. * gnu/local.mk (dist_patch_DATA): Register it. * gnu/packages/calendar.scm (date): Use it. Change-Id: I29bdfb49237650706abd870f2b9875739d12c6d5 Josselin Poiret
2024-08-31gnu: remind: Add 'bash' input for 'wrap-program'....It is required for cross-compilation. * gnu/packages/calendar.scm (remind)[inputs]: Add 'bash-minimal'. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I17b53c1bdb59eedffed8c9079bd7d065988bfac0 Maxime Devos
2024-03-30Merge branch 'gnome-team'Liliana Marie Prikler
2024-03-21gnu: khal: Update to 0.11.3....* gnu/packages/calendar.scm (khal): Update to 0.11.3. Change-Id: I848166bfe9469ee37b8acd126fdc3a307914a63b Efraim Flashner
2024-02-03Merge branch 'master' into gnome-teamLiliana Marie Prikler
2024-01-30gnu: libhdate: Fix pkg-config file....* gnu/packages/calendar.scm (libhdate)[source]: Add snippet to adjust the pkg-config file to have the correct prefix. Change-Id: I5273f732a4e4e512057aa8bc1ecd40a81ec7828e Efraim Flashner
2023-11-17gnu: libical: Update to 3.0.17....* gnu/packages/calendar.scm (libical): Update to 3.0.17. Change-Id: Ifa230c4e514d7bc4ea01907928678e8bfb490783 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com> Vivien Kraus