2015-03-11 21:00:07 +00:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2015 Tomáš Čech <sleep_walker@suse.cz>
|
2020-09-19 22:14:50 +00:00
|
|
|
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
|
2022-07-30 22:19:07 +00:00
|
|
|
;;; Copyright © 2020 Hamzeh Nasajpour <h.nasajpour@pantherx.org>
|
2021-02-04 16:29:51 +00:00
|
|
|
;;; Copyright © 2021 Eric Bavier <bavier@posteo.net>
|
2021-02-21 20:55:58 +00:00
|
|
|
;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at>
|
2021-03-06 02:17:21 +00:00
|
|
|
;;; Copyright © 2021 LibreMiami <packaging-guix@libremiami.org>
|
2022-07-30 22:19:07 +00:00
|
|
|
;;; Copyright © 2021 Reza Alizadeh Majd <r.majd@pantherx.org>
|
2022-04-19 07:26:54 +00:00
|
|
|
;;; Copyright © 2022 Foo Chuan Wei <chuanwei.foo@hotmail.com>
|
2022-07-30 22:19:07 +00:00
|
|
|
;;; Copyright © 2022 Pavel Shlyak <p.shlyak@pantherx.org>
|
2022-10-26 11:28:48 +00:00
|
|
|
;;; Copyright © 2022 Matthew James Kraai <kraai@ftbfs.org>
|
2015-03-11 21:00:07 +00:00
|
|
|
;;;
|
|
|
|
;;; 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages task-management)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2022-04-19 07:26:54 +00:00
|
|
|
#:use-module (guix gexp)
|
2015-03-11 21:00:07 +00:00
|
|
|
#:use-module (guix packages)
|
2023-01-28 09:47:43 +00:00
|
|
|
#:use-module (gnu packages)
|
2021-07-06 23:53:00 +00:00
|
|
|
#:use-module (gnu packages check)
|
2020-09-19 22:14:50 +00:00
|
|
|
#:use-module (gnu packages freedesktop)
|
|
|
|
#:use-module (gnu packages gettext)
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
#:use-module (gnu packages gnome)
|
|
|
|
#:use-module (gnu packages gstreamer)
|
|
|
|
#:use-module (gnu packages gtk)
|
gnu: hunspell: Move hunspell and dictionaries to hunspell module.
Consolidate hunspell and its dictionaries into the (gnu packages hunspell)
module instead of having them scattered about.
* gnu/packages/aspell.scm (aspell-word-list, define-word-list-dictionary,
hunspell-dict-{en, en-au, en-gb, en-gb-ize, en-us}): Remove variables.
* gnu/packages/libreoffice.scm (hunspell, dicollecte-french-dictionary,
define-french-dictionary, hunspell-dict-fr-{classique, moderne, réforme,
toutes-variantes}, hunspell-dict-pl, hunspell-dict-de, hunspell-dict-hu):
Remove variables.
* gnu/packages/hunspell.scm (hunspell, dicollecte-french-dictionary,
define-french-dictionary, hunspell-dict-fr-{classique, moderne, réforme,
toutes-variantes}, hunspell-dict-pl, hunspell-dict-de, hunspell-dict-hu,
aspell-word-list, define-word-list-dictionary, hunspell-dict-{en, en-au,
en-gb, en-gb-ize, en-us}): Add variables.
(hunspell-dictionary): Explicitly declare upstream libreoffice version to
prevent circular dependency.
* gnu/packages/ebook.scm,
gnu/packages/enchant.scm,
gnu/packages/freedesktop.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/kde-frameworks.scm,
gnu/packages/messaging.scm,
gnu/packages/scribus.scm,
gnu/packages/task-management.scm,
gnu/packages/telegram.scm,
gnu/packages/tex.scm,
gnu/packages/text-editors.scm,
gnu/packages/video.scm: Adjust module imports.
2023-01-03 23:48:39 +00:00
|
|
|
#:use-module (gnu packages hunspell)
|
2015-03-11 21:00:07 +00:00
|
|
|
#:use-module (gnu packages linux)
|
|
|
|
#:use-module (gnu packages lua)
|
2022-04-19 07:27:29 +00:00
|
|
|
#:use-module (gnu packages ncurses)
|
2020-09-19 22:14:50 +00:00
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
#:use-module (gnu packages python)
|
2022-06-25 01:30:59 +00:00
|
|
|
#:use-module (gnu packages python-build)
|
2021-03-06 02:17:21 +00:00
|
|
|
#:use-module (gnu packages python-xyz)
|
2022-07-30 22:19:07 +00:00
|
|
|
#:use-module (gnu packages qt)
|
2022-10-26 11:28:48 +00:00
|
|
|
#:use-module (gnu packages readline)
|
2023-01-28 09:47:43 +00:00
|
|
|
#:use-module (gnu packages ruby)
|
2021-12-15 09:52:18 +00:00
|
|
|
#:use-module (gnu packages time)
|
gnu: Rename module gnutls to tls.
* gnu/packages/gnutls.scm: Rename to...
* gnu/packages/tls.scm: ... this. Change module name accordingly.
* gnu/packages/{admin.scm, cups.scm, curl.scm, dc.scm, dns.scm, emacs.scm,
ftp.scm, gnome.scm, gnunet.scm, gnupg.scm, gsasl.scm, lynx.scm,
mail.scm, messaging.scm, package-management.scm, shishi.scm,
task-management.scm, version-control.scm, video.scm, vpn.scm,
webkit.scm, weechat.scm, wget.scm, wine.scm, xml.scm}: Adapt module
import to new name.
* gnu-system.am (GNU_SYSTEM_MODULES): Rename gnutls module to tls.
2015-07-03 19:41:22 +00:00
|
|
|
#:use-module (gnu packages tls)
|
2015-03-11 21:00:07 +00:00
|
|
|
#:use-module (guix download)
|
2020-09-19 22:14:50 +00:00
|
|
|
#:use-module (guix git-download)
|
2021-03-06 02:17:21 +00:00
|
|
|
#:use-module (guix hg-download)
|
2020-09-19 22:14:50 +00:00
|
|
|
#:use-module (guix utils)
|
|
|
|
#:use-module (guix build-system cmake)
|
2022-04-19 07:26:54 +00:00
|
|
|
#:use-module (guix build-system gnu)
|
2021-02-21 20:55:58 +00:00
|
|
|
#:use-module (guix build-system go)
|
2021-03-06 02:17:21 +00:00
|
|
|
#:use-module (guix build-system meson)
|
2022-07-30 22:19:07 +00:00
|
|
|
#:use-module (guix build-system python)
|
|
|
|
#:use-module (guix build-system qt))
|
2021-03-06 02:17:21 +00:00
|
|
|
|
2021-03-13 11:22:56 +00:00
|
|
|
(define-public clikan
|
2021-07-06 23:53:00 +00:00
|
|
|
(let ((commit "55ab29e68263c6fed2844aef96fbebacda3eba9b")
|
|
|
|
(revision "1"))
|
2021-03-13 11:22:56 +00:00
|
|
|
(package
|
|
|
|
(name "clikan")
|
|
|
|
(version
|
2021-07-06 23:53:00 +00:00
|
|
|
(git-version "0.2.1" revision commit))
|
2021-03-13 11:22:56 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
2021-07-06 23:53:00 +00:00
|
|
|
(url "https://github.com/kitplummer/clikan")
|
2021-03-13 11:22:56 +00:00
|
|
|
(commit commit)))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
2021-07-06 23:53:00 +00:00
|
|
|
(base32 "1nyx80z53xxlbhpb5k22jnv4jajxqhjm0gz7qb18w9pqqlrvkqd4"))))
|
2021-03-13 11:22:56 +00:00
|
|
|
(build-system python-build-system)
|
2021-07-06 23:53:00 +00:00
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'check
|
|
|
|
(lambda* (#:key inputs outputs tests? #:allow-other-keys)
|
|
|
|
(setenv "HOME" (getenv "TEMP"))
|
|
|
|
(when tests?
|
|
|
|
(add-installed-pythonpath inputs outputs)
|
|
|
|
(invoke "pytest" "-vv")))))))
|
|
|
|
(native-inputs
|
|
|
|
`(("pytest" ,python-pytest)
|
|
|
|
("click" ,python-click)))
|
2021-03-13 11:22:56 +00:00
|
|
|
(inputs
|
|
|
|
`(("click" ,python-click)
|
|
|
|
("click-default-group" ,python-click-default-group)
|
|
|
|
("pyyaml" ,python-pyyaml)
|
2021-07-06 23:53:00 +00:00
|
|
|
("rich" ,python-rich)))
|
|
|
|
(home-page "https://github.com/kitplummer/clikan")
|
|
|
|
(synopsis "Command-line kanban utility")
|
2021-03-13 11:22:56 +00:00
|
|
|
(description
|
|
|
|
"Clikan is a super simple command-line utility for tracking tasks
|
|
|
|
following the Japanese kanban (boarding) style.")
|
|
|
|
(license license:expat))))
|
|
|
|
|
2021-03-09 12:37:28 +00:00
|
|
|
(define-public t-todo-manager
|
2021-03-06 02:17:21 +00:00
|
|
|
;; Last release is more than 10 years old. Using latest commit.
|
|
|
|
(let ((changeset "89ad444c000b")
|
|
|
|
(revision "97"))
|
|
|
|
(package
|
2021-03-09 12:37:28 +00:00
|
|
|
(name "t-todo-manager")
|
2021-03-06 02:17:21 +00:00
|
|
|
(version (git-version "1.2.0" revision changeset))
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method hg-fetch)
|
|
|
|
(uri (hg-reference
|
|
|
|
(url "https://hg.stevelosh.com/t")
|
|
|
|
(changeset changeset)))
|
|
|
|
(file-name (string-append name "-" version "-checkout"))
|
|
|
|
(sha256
|
|
|
|
(base32 "0c8zn7l0xq65wp07h7mxnb5ww56d1443l2vkjvx5sj6wpcchfn0s"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list python-cram))
|
2021-03-06 02:17:21 +00:00
|
|
|
(synopsis "Command-line todo list manager")
|
|
|
|
(description
|
|
|
|
"@command{t} is a command-line todo list manager for people that want
|
|
|
|
to finish tasks, not organize them.")
|
|
|
|
(home-page "https://stevelosh.com/projects/t/")
|
|
|
|
(license license:expat))))
|
2015-03-11 21:00:07 +00:00
|
|
|
|
|
|
|
(define-public taskwarrior
|
|
|
|
(package
|
|
|
|
(name "taskwarrior")
|
2022-05-13 14:13:55 +00:00
|
|
|
(version "2.6.2")
|
2015-03-11 21:00:07 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2022-05-13 14:13:55 +00:00
|
|
|
"https://taskwarrior.org/download/task-" version ".tar.gz"))
|
2015-03-11 21:00:07 +00:00
|
|
|
(sha256 (base32
|
2022-05-13 14:13:55 +00:00
|
|
|
"1v6gca4cfrlh7adjn95j3jg3qq81w3h68037803dc3yd03qaglxi"))))
|
2015-03-11 21:00:07 +00:00
|
|
|
(build-system cmake-build-system)
|
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list gnutls
|
|
|
|
`(,util-linux "lib")))
|
2015-03-11 21:00:07 +00:00
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; No tests implemented.
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2021-02-04 16:29:51 +00:00
|
|
|
(delete 'install-license-files)))) ; Already installed by package
|
2020-05-25 18:21:15 +00:00
|
|
|
(home-page "https://taskwarrior.org")
|
2015-03-11 21:00:07 +00:00
|
|
|
(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)))
|
2020-09-19 22:14:50 +00:00
|
|
|
|
2022-10-26 11:28:48 +00:00
|
|
|
(define-public tasksh
|
|
|
|
(package
|
|
|
|
(name "tasksh")
|
|
|
|
(version "1.2.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://taskwarrior.org/download/tasksh-" version ".tar.gz"))
|
|
|
|
(sha256 (base32
|
|
|
|
"1z8zw8lld62fjafjvy248dncjk0i4fwygw0ahzjdvyyppx4zjhkf"))))
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
(inputs
|
|
|
|
(list readline))
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; No tests implemented.
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'install-license-files)))) ; Already installed by package
|
|
|
|
(home-page "https://taskwarrior.org")
|
|
|
|
(synopsis "Taskwarrior shell")
|
|
|
|
(description
|
|
|
|
"Tasksh is a shell for Taskwarrior, providing a more immersive
|
|
|
|
environment for list management. It has a review feature, shell command
|
|
|
|
execution, and libreadline support.")
|
|
|
|
(license license:expat)))
|
|
|
|
|
2023-01-28 09:47:43 +00:00
|
|
|
(define-public timewarrior
|
|
|
|
(package
|
|
|
|
(name "timewarrior")
|
|
|
|
(version "1.4.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"https://github.com/GothenburgBitFactory/timewarrior/releases/download/v" version
|
|
|
|
"/timew-" version ".tar.gz"))
|
|
|
|
(patches (search-patches "timewarrior-time-sensitive-tests.patch"))
|
|
|
|
(sha256 (base32
|
|
|
|
"0lyaqzcg8np2fpsmih0hlkjxd3qbadc7khr24m1pq9lsdhq7xpy4"))))
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
|
|
|
(list
|
|
|
|
#:phases
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
(add-after 'patch-source-shebangs 'patch-cmake-shell
|
|
|
|
(lambda _
|
|
|
|
(substitute* "src/commands/CMakeLists.txt"
|
|
|
|
(("/bin/sh") "sh"))))
|
|
|
|
;; Fix out of source building of manual pages
|
|
|
|
(add-after 'patch-source-shebangs 'patch-man-cmake
|
|
|
|
(lambda _
|
|
|
|
(substitute* "doc/man1/CMakeLists.txt"
|
|
|
|
(("\\$\\{CMAKE_CURRENT_BINARY_DIR\\}")
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}"))
|
|
|
|
(substitute* "doc/man7/CMakeLists.txt"
|
|
|
|
(("\\$\\{CMAKE_CURRENT_BINARY_DIR\\}")
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}"))))
|
|
|
|
(add-after 'install 'install-completions
|
|
|
|
(lambda _
|
|
|
|
(let ((bash-completion-install-dir
|
|
|
|
(string-append #$output "/etc/bash_completion.d")))
|
|
|
|
(mkdir-p bash-completion-install-dir)
|
|
|
|
(copy-file
|
|
|
|
"../timew-1.4.3/completion/timew-completion.bash"
|
|
|
|
(string-append bash-completion-install-dir "/timew"))))))))
|
|
|
|
(native-inputs
|
|
|
|
(list ruby-asciidoctor))
|
|
|
|
(inputs
|
|
|
|
(list gnutls python `(,util-linux "lib")))
|
|
|
|
(home-page "https://timewarrior.net")
|
|
|
|
(synopsis "Command line utility to track and report time")
|
|
|
|
(description
|
|
|
|
"Timewarrior is a command line time tracking application, which allows
|
|
|
|
you to record time spent on activities. You may be tracking your time for
|
|
|
|
curiosity, or because your work requires it.")
|
|
|
|
(license license:expat)))
|
|
|
|
|
2022-04-19 07:27:29 +00:00
|
|
|
(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.
|
2022-05-20 05:44:52 +00:00
|
|
|
@code{worklog} is a simple ncurses based program that runs a clock and logs
|
|
|
|
time to a logfile.")
|
2022-04-19 07:27:29 +00:00
|
|
|
(license license:public-domain))))
|
|
|
|
|
2021-02-21 20:55:58 +00:00
|
|
|
(define-public dstask
|
|
|
|
(package
|
|
|
|
(name "dstask")
|
2021-10-23 21:55:40 +00:00
|
|
|
(version "0.25")
|
2021-02-21 20:55:58 +00:00
|
|
|
(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
|
2021-10-23 21:55:40 +00:00
|
|
|
(base32 "1m83zc2zqvpcbjng92jvlnk0biw4krv12wjvjas66jbbk3sjghcy"))))
|
2021-02-21 20:55:58 +00:00
|
|
|
(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)
|
2021-10-23 21:55:40 +00:00
|
|
|
(install-file ".dstask-zsh-completions.sh" zsh-completion))))))))
|
2021-02-21 20:55:58 +00:00
|
|
|
(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)))
|
|
|
|
|
2020-09-19 22:14:50 +00:00
|
|
|
(define-public blanket
|
|
|
|
(package
|
|
|
|
(name "blanket")
|
2021-11-27 21:14:11 +00:00
|
|
|
(version "0.5.0")
|
2020-09-19 22:14:50 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/rafaelmardojai/blanket/")
|
|
|
|
(commit version)))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
2021-11-27 21:14:11 +00:00
|
|
|
(base32 "00i821zqfbigxmc709322r16z75qsw4rg23yhv35gza9sl65bzkg"))))
|
2020-09-19 22:14:50 +00:00
|
|
|
(build-system meson-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:glib-or-gtk? #t
|
|
|
|
#:tests? #f ;the "Validate appstream file" test fails
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'wrap 'wrap-libs
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(gi-typelib-path (getenv "GI_TYPELIB_PATH"))
|
|
|
|
(gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH"))
|
gnu: Adjust package collection to Wrap using GUIX_PYTHONPATH.
This change was automated using:
$ git ls-files | grep .scm | \
xargs sed 's/(getenv "PYTHONPATH")/(getenv "GUIX_PYTHONPATH")/' -i
$ git ls-files | grep .scm | \
xargs sed 's/`("PYTHONPATH"/`("GUIX_PYTHONPATH"/' -i
* gnu/packages/admin.scm (nmap):
(dstat): Wrap using GUIX_PYTHONPATH.
* gnu/packages/audio.scm (jack-2):
(carla): Likewise.
* gnu/packages/benchmark.scm (fio): Likewise.
* gnu/packages/bioinformatics.scm (couger): Likewise.
(gess, find-circ, filtlong, nanopolish): Likewise.
* gnu/packages/cdrom.scm (cdemu-client): Likewise.
* gnu/packages/chemistry.scm (avogadro): Likewise.
* gnu/packages/connman.scm (econnman): Likewise.
* gnu/packages/cups.scm (hplip): Likewise.
* gnu/packages/debug.scm (scanmem): Likewise.
* gnu/packages/display-managers.scm (lightdm): Likewise.
* gnu/packages/ebook.scm (cozy): Likewise.
* gnu/packages/education.scm (anki): Likewise.
* gnu/packages/engineering.scm (kicad, volk, freecad): Likewise.
* gnu/packages/game-development.scm (renpy): Likewise.
* gnu/packages/games.scm (roguebox-adventures)
(seahorse-adventures, kajongg): Likewise.
* gnu/packages/gimp.scm (gimp, glimpse): Likewise.
* gnu/packages/glib.scm (itstool): Likewise.
* gnu/packages/gnome.scm (gnome-music, gtg, rhythmbox): Likewise.
(eolie, d-feet, gedit, caribou, gnome-shell, authenticator)
(gnome-todo, orca, passwordsafe, terminator, setzer)
(libratbag, komikku): Likewise.
* gnu/packages/gps.scm (gpsd): Likewise.
* gnu/packages/gtk.scm (gtk-doc): Likewise.
* gnu/packages/ibus.scm (ibus, ibus-libpinyin, ibus-anthy)
(ibus-libhangul): Likewise.
* gnu/packages/inkscape.scm (inkscape-1.0): Likewise.
* gnu/packages/linux.scm (bcc): Likewise.
* gnu/packages/mail.scm (notifymuch): Likewise.
* gnu/packages/maths.scm (units): Likewise.
* gnu/packages/music.scm (solfege): Likewise.
* gnu/packages/networking.scm (blueman): Likewise.
* gnu/packages/patchutils.scm (patchwork): Likewise.
* gnu/packages/photo.scm (rapid-photo-downloader, entangle): Likewise.
* gnu/packages/plotutils.scm (asymptote): Likewise.
* gnu/packages/presentation.scm (presentty): Likewise.
* gnu/packages/screen.scm (byobu): Likewise.
* gnu/packages/storage.scm (ceph): Likewise.
* gnu/packages/syndication.scm (liferea): Likewise.
* gnu/packages/task-management.scm (blanket): Likewise.
* gnu/packages/text-editors.scm (manuskript): Likewise.
* gnu/packages/version-control.scm (gitless, cgit, git-when-merged)
(git-imerge): Likewise.
* gnu/packages/video.scm (pitivi): Likewise.
* gnu/packages/virtualization.scm (criu): Likewise.
* gnu/packages/xfce.scm (catfish): Likewise.
2021-01-27 22:33:13 +00:00
|
|
|
(python-path (getenv "GUIX_PYTHONPATH")))
|
2020-09-19 22:14:50 +00:00
|
|
|
(wrap-program (string-append out "/bin/blanket")
|
|
|
|
`("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))
|
|
|
|
`("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path))
|
gnu: Adjust package collection to Wrap using GUIX_PYTHONPATH.
This change was automated using:
$ git ls-files | grep .scm | \
xargs sed 's/(getenv "PYTHONPATH")/(getenv "GUIX_PYTHONPATH")/' -i
$ git ls-files | grep .scm | \
xargs sed 's/`("PYTHONPATH"/`("GUIX_PYTHONPATH"/' -i
* gnu/packages/admin.scm (nmap):
(dstat): Wrap using GUIX_PYTHONPATH.
* gnu/packages/audio.scm (jack-2):
(carla): Likewise.
* gnu/packages/benchmark.scm (fio): Likewise.
* gnu/packages/bioinformatics.scm (couger): Likewise.
(gess, find-circ, filtlong, nanopolish): Likewise.
* gnu/packages/cdrom.scm (cdemu-client): Likewise.
* gnu/packages/chemistry.scm (avogadro): Likewise.
* gnu/packages/connman.scm (econnman): Likewise.
* gnu/packages/cups.scm (hplip): Likewise.
* gnu/packages/debug.scm (scanmem): Likewise.
* gnu/packages/display-managers.scm (lightdm): Likewise.
* gnu/packages/ebook.scm (cozy): Likewise.
* gnu/packages/education.scm (anki): Likewise.
* gnu/packages/engineering.scm (kicad, volk, freecad): Likewise.
* gnu/packages/game-development.scm (renpy): Likewise.
* gnu/packages/games.scm (roguebox-adventures)
(seahorse-adventures, kajongg): Likewise.
* gnu/packages/gimp.scm (gimp, glimpse): Likewise.
* gnu/packages/glib.scm (itstool): Likewise.
* gnu/packages/gnome.scm (gnome-music, gtg, rhythmbox): Likewise.
(eolie, d-feet, gedit, caribou, gnome-shell, authenticator)
(gnome-todo, orca, passwordsafe, terminator, setzer)
(libratbag, komikku): Likewise.
* gnu/packages/gps.scm (gpsd): Likewise.
* gnu/packages/gtk.scm (gtk-doc): Likewise.
* gnu/packages/ibus.scm (ibus, ibus-libpinyin, ibus-anthy)
(ibus-libhangul): Likewise.
* gnu/packages/inkscape.scm (inkscape-1.0): Likewise.
* gnu/packages/linux.scm (bcc): Likewise.
* gnu/packages/mail.scm (notifymuch): Likewise.
* gnu/packages/maths.scm (units): Likewise.
* gnu/packages/music.scm (solfege): Likewise.
* gnu/packages/networking.scm (blueman): Likewise.
* gnu/packages/patchutils.scm (patchwork): Likewise.
* gnu/packages/photo.scm (rapid-photo-downloader, entangle): Likewise.
* gnu/packages/plotutils.scm (asymptote): Likewise.
* gnu/packages/presentation.scm (presentty): Likewise.
* gnu/packages/screen.scm (byobu): Likewise.
* gnu/packages/storage.scm (ceph): Likewise.
* gnu/packages/syndication.scm (liferea): Likewise.
* gnu/packages/task-management.scm (blanket): Likewise.
* gnu/packages/text-editors.scm (manuskript): Likewise.
* gnu/packages/version-control.scm (gitless, cgit, git-when-merged)
(git-imerge): Likewise.
* gnu/packages/video.scm (pitivi): Likewise.
* gnu/packages/virtualization.scm (criu): Likewise.
* gnu/packages/xfce.scm (catfish): Likewise.
2021-01-27 22:33:13 +00:00
|
|
|
`("GUIX_PYTHONPATH" ":" prefix (,python-path))))
|
2020-09-19 22:14:50 +00:00
|
|
|
#t)))))
|
|
|
|
(native-inputs
|
|
|
|
`(("desktop-file-utils" ,desktop-file-utils)
|
|
|
|
("gettext" ,gettext-minimal)
|
|
|
|
("glib:bin" ,glib "bin")
|
|
|
|
("gobject-introspection" ,gobject-introspection)
|
|
|
|
("gtk+:bin" ,gtk+ "bin")
|
2022-01-18 19:06:57 +00:00
|
|
|
("pkg-config" ,pkg-config)))
|
2020-09-19 22:14:50 +00:00
|
|
|
(inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
(list appstream-glib
|
|
|
|
gsettings-desktop-schemas
|
|
|
|
gst-plugins-bad
|
|
|
|
gst-plugins-good ;for ScaleTempo plugin
|
|
|
|
gtk+
|
|
|
|
libhandy
|
2022-01-18 19:06:57 +00:00
|
|
|
python
|
2021-12-13 16:18:24 +00:00
|
|
|
python-gst
|
|
|
|
python-pygobject))
|
2020-09-19 22:14:50 +00:00
|
|
|
(home-page "https://github.com/rafaelmardojai/blanket")
|
|
|
|
(synopsis "Ambient sound and noise player")
|
|
|
|
(description
|
|
|
|
"Blanket provides different ambient sounds and types of noise to listen
|
|
|
|
to with the goal of improving your focus and enhancing your productivity.
|
|
|
|
You can also use it to fall asleep in a noisy environment.")
|
|
|
|
(license license:gpl3+)))
|
2021-12-15 09:52:18 +00:00
|
|
|
|
2022-07-30 22:19:07 +00:00
|
|
|
(define-public feathernotes
|
|
|
|
(package
|
|
|
|
(name "feathernotes")
|
|
|
|
(version "0.10.0")
|
|
|
|
(home-page "https://github.com/tsujan/FeatherNotes")
|
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url home-page)
|
|
|
|
(commit (string-append "V" version))))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"122pbbxvi0mmhbz8m8far71vm72090r5cafss4hvrsjmq52a0y4k"))))
|
|
|
|
(build-system qt-build-system)
|
|
|
|
(arguments (list #:tests? #f)) ; no upstream tests
|
|
|
|
(native-inputs (list pkg-config qttools-5)) ; for lrelease
|
|
|
|
(inputs (list hunspell qtsvg-5 qtx11extras qtbase-5))
|
|
|
|
(synopsis "GUI hierarchical notes-manager")
|
|
|
|
(description
|
|
|
|
"FeatherNotes is a GUI hierarchical notes-manager for Linux.
|
|
|
|
It is independent of any desktop environment and has rich text formatting,
|
|
|
|
image embedding and inserting editable tables, spell checking, searchable
|
|
|
|
tags, drag and drop support, tray icon, node icons, hyperlinks, pdf and html
|
|
|
|
export, password protection and auto-saving.")
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
2022-04-19 07:26:54 +00:00
|
|
|
(define-public wtime
|
|
|
|
(package
|
|
|
|
(name "wtime")
|
|
|
|
(version "0.2")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://sourceforge/wtime/wtime/"
|
|
|
|
version "/wtime_"
|
|
|
|
(string-replace-substring version "." "_")
|
|
|
|
".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32 "1rp1sxas9wjc84fvr6x94ryl3r9w7jd0x5j1hbi9q7yrgfclp830"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:make-flags
|
|
|
|
,#~(list (string-append "CC=" #$(cc-for-target))
|
|
|
|
(string-append "PREFIX=" #$output))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
|
|
|
(add-after 'unpack 'fix-man-path
|
|
|
|
(lambda _
|
|
|
|
(substitute* "Makefile"
|
|
|
|
(("/man1") "/share/man/man1")))))
|
|
|
|
#:tests? #f)) ; No "check" target.
|
gnu: Use HTTPS package home pages wherever possible.
* gnu/packages/accessibility.scm (florence)[home-page]: Use HTTPS.
* gnu/packages/admin.scm (netcat, nmon)[home-page]: Likewise.
* gnu/packages/algebra.scm (mpfrcx, cm, flint, fftw, r-dtt)[home-page]:
Likewise.
* gnu/packages/apr.scm (apr, apr-util)[home-page]: Likewise.
* gnu/packages/aspell.scm (aspell-dict-it)[home-page]: Likewise.
* gnu/packages/astronomy.scm (casacore, sextractor, libnova)
(xplanet)[home-page]: Likewise.
* gnu/packages/audio.scm (libtimidity, alsa-modular-synth, azr3, tao)
(freepats, rakarrack, liblo, libshout-idjc, timidity++, libsbsms)
(libmodplug, libxmp, xmp, sox, drc, gsm, gnaural)
(streamripper)[home-page]: Likewise.
* gnu/packages/authentication.scm (pamtester)[home-page]: Likewise.
* gnu/packages/backup.scm (grsync)[home-page]: Likewise.
* gnu/packages/bioconductor.scm (r-nmf, r-edger, r-limma)
(r-plgem)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (python-biom-format, bowtie, bowtie1)
(bwa, crossmap, java-htsjdk, java-htsjdk-latest, java-picard)
(java-picard-2.10.3, kaiju, proteinortho, rsem, rseqc, seek, samtools)
(snap-aligner, subread, stringtie, r-centipede, prinseq, emboss, phylip)
(libsbml)[home-page]: Likewise.
* gnu/packages/build-tools.scm (tup)[home-page]: Likewise.
* gnu/packages/cdrom.scm (libcddb, cdrdao, cdrtools)
(cd-discid)[home-page]: Likewise.
* gnu/packages/check.scm (cunit, python-nose)
(python-pyhamcrest)[home-page]: Likewise.
* gnu/packages/chemistry.scm (gromacs)[home-page]: Likewise.
* gnu/packages/chez.scm (chez-fmt)[home-page]: Likewise.
* gnu/packages/code.scm (lcov, uncrustify, cscope)[home-page]: Likewise.
* gnu/packages/compression.scm (p7zip)[home-page]: Likewise.
* gnu/packages/cran.scm (r-emdist, r-proj4, r-zoo, r-ggalluvial)
(r-orgmassspecr, r-polychrome, r-partykit, r-rcpp, r-ff, r-emdbook)
(r-fitdistrplus, r-linprog, r-geometry, r-dtw, r-fst, r-rjags)
(r-intergraph, r-qualv, r-labelled, r-survey, r-coin, r-fmsb, r-tm)
(r-corpcor, r-rmpfr, r-spatialextremes, r-longitudinal, r-genenet)
(r-bayesm, r-seqinr, r-mpm, r-text2vec, r-rgdal, r-seewave, r-hdrcde)
(r-shapes, r-anytime, r-stm, r-d3network, r-tam, r-directlabels)
(r-spatstat-utils, r-spatstat-sparse, r-spatstat-data, r-spatstat-geom)
(r-spatstat-core, r-spatstat-linnet, r-spatstat-random, r-spatstat)
(r-rcpptoml, r-mlecens, r-seurat, r-mlearning, r-zooimage)[home-page]:
Likewise.
* gnu/packages/crates-io.scm (rust-nickel-0.11, rust-thrift-0.13)
(rust-trust-dns-https-0.20, rust-trust-dns-native-tls-0.20)
(rust-trust-dns-openssl-0.20, rust-trust-dns-proto-0.20)
(rust-trust-dns-resolver-0.20, rust-trust-dns-rustls-0.20)
(rust-uint-0.9, rust-yaml-rust-0.4)[home-page]: Likewise.
* gnu/packages/crypto.scm (libdecaf, ccrypt)[home-page]: Likewise.
* gnu/packages/curl.scm (curlpp)[home-page]: Likewise.
* gnu/packages/databases.scm (python-pylibmc, unixodbc, wiredtiger)
(libpqxx, mdbtools, virtuoso-ose, libdbi, libdbi-drivers)
(soci)[home-page]: Likewise.
* gnu/packages/debian.scm (apt-mirror)[home-page]: Likewise.
* gnu/packages/debug.scm (remake)[home-page]: Likewise.
* gnu/packages/disk.scm (sdparm, idle3-tools, duc)[home-page]: Likewise.
* gnu/packages/django.scm (python-django-haystack)[home-page]: Likewise.
* gnu/packages/djvu.scm (djvulibre, djview)[home-page]: Likewise.
* gnu/packages/dns.scm (dnsmasq)[home-page]: Likewise.
* gnu/packages/docbook.scm (dblatex, docbook2x)[home-page]: Likewise.
* gnu/packages/documentation.scm (scrollkeeper)[home-page]: Likewise.
* gnu/packages/ebook.scm (liblinebreak)[home-page]: Likewise.
* gnu/packages/electronics.scm (xoscope)[home-page]: Likewise.
* gnu/packages/emacs-xyz.scm (emacs-bbdb, emacs-caps-lock, emacs-djvu)
(emacs-pabbrev, emacs-twittering-mode, emacs-filladapt, emacs-rudel)
(emacs-stream, emacspeak, emacs-cc-mode, emacs-eldoc, emacs-jsonrpc)
(emacs-gtk-look, emacs-xclip, emacs-slime-volleyball, emacs-minimap)
(emacs-auto-dictionary-mode, emacs-persist, emacs-shell-command+)
(emacs-map, emacs-xref, emacs-dictionary)[home-page]: Likewise.
* gnu/packages/embedded.scm (sdcc)[home-page]: Likewise.
* gnu/packages/engineering.scm (asco, libngspice, libspnav)
(openctm)[home-page]: Likewise.
* gnu/packages/erlang.scm (erlang-erlware-commons)[home-page]: Likewise.
* gnu/packages/file-systems.scm (jfsutils, curlftpfs)[home-page]:
Likewise.
* gnu/packages/finance.scm (gbonds)[home-page]: Likewise.
* gnu/packages/flashing-tools.scm (dfu-util, srecord)[home-page]:
Likewise.
* gnu/packages/fltk.scm (ntk)[home-page]: Likewise.
* gnu/packages/fonts.scm (font-terminus, font-tex-gyre)
(font-comic-neue)[home-page]: Likewise.
* gnu/packages/fontutils.scm (ttf2pt1, potrace, libspiro)[home-page]:
Likewise.
* gnu/packages/fpga.scm (icestorm, gtkwave, gtkwave)
(python-myhdl)[home-page]: Likewise.
* gnu/packages/freedesktop.scm (libatasmart)[home-page]: Likewise.
* gnu/packages/ftp.scm (weex)[home-page]: Likewise.
* gnu/packages/game-development.scm (dds, python-tmx, sfxr, quesoglc)
(eureka, plib)[home-page]: Likewise.
* gnu/packages/games.scm (abe, alex4, armagetronad, barony)
(foobillard++, golly, ltris, pipewalker, prboom-plus, trigger-rally)
(cmatrix, pinball, pioneers, tennix, chromium-bsu, freeciv, kiki)
(quakespasm, frotz, frotz-dumb-terminal, frotz-sdl, btanks)
(flare-engine, chessx, barrage, cgoban, passage)[home-page]: Likewise.
* gnu/packages/geo.scm (python-geopandas, saga)[home-page]: Likewise.
* gnu/packages/gl.scm (freeglut, gl2ps)[home-page]: Likewise.
* gnu/packages/gnome.scm (cogl, clutter-gtk, clutter-gst, bluefish)
(workrave)[home-page]: Likewise.
* gnu/packages/gnustep.scm (wmnd, wmfire, wmfire)[home-page]: Likewise.
* gnu/packages/graph.scm (mscgen)[home-page]: Likewise.
* gnu/packages/graphics.scm (assimp, alembic, ctl, agg)
(opencsg)[home-page]: Likewise.
* gnu/packages/graphviz.scm (gts)[home-page]: Likewise.
* gnu/packages/gtk.scm (gtkspell3)[home-page]: Likewise.
* gnu/packages/guile-xyz.scm (guile-irregex)[home-page]: Likewise.
* gnu/packages/haskell-apps.scm (cpphs)[home-page]: Likewise.
* gnu/packages/haskell-check.scm (ghc-hunit)[home-page]: Likewise.
* gnu/packages/haskell-web.scm (ghc-http-client-restricted)
(ghc-blaze-html, ghc-happstack-server, ghc-sourcemap)[home-page]:
Likewise.
* gnu/packages/haskell-xyz.scm (ghc-assoc, ghc-cairo, ghc-cborg)
(ghc-csv, ghc-glob, ghc-gtk2hs-buildtools, ghc-hmatrix-gsl-stats)
(ghc-intervalmap, ghc-lens-family-core, ghc-managed, ghc-mountpoints)
(ghc-network-multicast, ghc-optional-args, ghc-regex, ghc-spoon)
(ghc-transformers, ghc-turtle, ghc-utf8-light, ghc-wizards)
(ghc-template-haskell, ghc-boot-th, ghc-binary-orphans)
(ghc-postgresql-simple)[home-page]: Likewise.
* gnu/packages/hexedit.scm (ht, bvi)[home-page]: Likewise.
* gnu/packages/hunspell.scm (hunspell-dict-hu)[home-page]: Likewise.
* gnu/packages/image-processing.scm (mia)[home-page]: Likewise.
* gnu/packages/image-viewers.scm (geeqie, gpicview, luminance-hdr)
(qiv)[home-page]: Likewise.
* gnu/packages/image.scm (libuemf, devil, steghide, optipng, niftilib)
(sng, mtpaint)[home-page]: Likewise.
* gnu/packages/java-xml.scm (java-simple-xml, java-jaxp)
(java-apache-xml-commons-resolver)[home-page]: Likewise.
* gnu/packages/java.scm (java-cisd-base, java-cisd-args4j)
(java-hamcrest-core, java-jsr305, java-eclipse-osgi)
(java-eclipse-equinox-common, java-eclipse-core-jobs)
(java-eclipse-equinox-registry, java-eclipse-equinox-app)
(java-eclipse-equinox-preferences, java-eclipse-core-contenttype)
(java-eclipse-text, java-treelayout, java-aopalliance, java-jeromq)
(java-cdi-api)[home-page]: Likewise.
* gnu/packages/jemalloc.scm (jemalloc-4.5.0)[home-page]: Likewise.
* gnu/packages/julia-xyz.scm (julia-recipespipeline)[home-page]:
Likewise.
* gnu/packages/kde-internet.scm (kget)[home-page]: Likewise.
* gnu/packages/kde-systemtools.scm (dolphin-plugins)
(konsole)[home-page]: Likewise.
* gnu/packages/kodi.scm (fstrcmp)[home-page]: Likewise.
* gnu/packages/language.scm (hime, libchewing)[home-page]: Likewise.
* gnu/packages/lego.scm (nqc)[home-page]: Likewise.
* gnu/packages/lesstif.scm (lesstif)[home-page]: Likewise.
* gnu/packages/libcanberra.scm (libcanberra)[home-page]: Likewise.
* gnu/packages/libdaemon.scm (libdaemon)[home-page]: Likewise.
* gnu/packages/libffi.scm (libffi)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (libwpd, libwpg, libwps)[home-page]:
Likewise.
* gnu/packages/libusb.scm (libmtp, gmtp)[home-page]: Likewise.
* gnu/packages/linux.scm (e2fsprogs, extundelete, lsscsi, net-tools)
(kbd, sysfsutils, cpuid, libpfm4)[home-page]: Likewise.
* gnu/packages/lisp-check.scm (sbcl-ptester, sbcl-xlunit)[home-page]:
Likewise.
* gnu/packages/lisp-xyz.scm (sbcl-html-encode, sbcl-py-configparser)
(sbcl-cl-utilities, sbcl-series, sbcl-uffi, sbcl-clsql, sbcl-sycamore)
(sbcl-osicat, sbcl-hu.dwim.common, sbcl-caveman, sbcl-trivial-shell)
(sbcl-trivial-benchmark, sbcl-screamer, sbcl-smug)[home-page]: Likewise.
* gnu/packages/lisp.scm (lush2)[home-page]: Likewise.
* gnu/packages/logging.scm (log4cpp)[home-page]: Likewise.
* gnu/packages/lua.scm (lua-ldoc)[home-page]: Likewise.
* gnu/packages/machine-learning.scm (mcl, openfst, rxcpp)[home-page]:
Likewise.
* gnu/packages/mail.scm (muchsync, procmail, sendmail)
(opensmtpd-filter-dkimsign, crm114)[home-page]: Likewise.
* gnu/packages/man.scm (libpipeline, man-db)[home-page]: Likewise.
* gnu/packages/maths.scm (lapack, scalapack, hdf-eos5, itpp, gmsh)
(metamath, p4est, armadillo, suitesparse, atlas, lpsolve, wcalc, why3)
(frama-c)[home-page]: Likewise.
* gnu/packages/mcrypt.scm (mcrypt, libmcrypt, libmhash)[home-page]:
Likewise.
* gnu/packages/minetest.scm (minetest-advtrains)[home-page]: Likewise.
* gnu/packages/monitoring.scm (python-whisper, python-carbon)
(hostscope)[home-page]: Likewise.
* gnu/packages/mp3.scm (id3lib, libmp3splt, mp3splt, mpg321)
(lame)[home-page]: Likewise.
* gnu/packages/multiprecision.scm (mpc)[home-page]: Likewise.
* gnu/packages/music.scm (aria-maestosa, lingot, setbfree, bristol)
(portmidi, python-pyportmidi, zynaddsubfx, yoshimi, aj-snapshot)
(schismtracker, midicsv, midicsv, qmidiarp, qmidiroute, dssi, tap-lv2)
(shiru-lv2)[home-page]: Likewise.
* gnu/packages/ncurses.scm (stfl)[home-page]: Likewise.
* gnu/packages/networking.scm (lksctp-tools, mbuffer, ifstatus, bird)
(tunctl, traceroute)[home-page]: Likewise.
* gnu/packages/node-xyz.scm (node-mersenne)[home-page]: Likewise.
* gnu/packages/ntp.scm (openntpd)[home-page]: Likewise.
* gnu/packages/ocaml.scm (opam, hevea, ocaml-menhir, ocaml-piqilib)
(ocaml-graph, cubicle)[home-page]: Likewise.
* gnu/packages/opencl.scm (python-pyopencl)[home-page]: Likewise.
* gnu/packages/package-management.scm (xstow, modules)[home-page]:
Likewise.
* gnu/packages/parallel.scm (xjobs)[home-page]: Likewise.
* gnu/packages/pdf.scm (podofo, qpdf, xournal, impressive)[home-page]:
Likewise.
* gnu/packages/perl.scm (perl-math-vecstat, perltidy)[home-page]:
Likewise.
* gnu/packages/photo.scm (libpano13, enblend-enfuse, hugin)[home-page]:
Likewise.
* gnu/packages/plan9.scm (drawterm)[home-page]: Likewise.
* gnu/packages/plotutils.scm (guile-charting, ploticus)[home-page]:
Likewise.
* gnu/packages/popt.scm (argtable, popt)[home-page]: Likewise.
* gnu/packages/profiling.scm (otf2)[home-page]: Likewise.
* gnu/packages/pulseaudio.scm (pulseaudio)[home-page]: Likewise.
* gnu/packages/python-check.scm (python-mypy)[home-page]: Likewise.
* gnu/packages/python-web.scm (python-cssutils)
(python-translationstring)[home-page]: Likewise.
* gnu/packages/python-xyz.scm (python-diskcache, python-doxyqml)
(python-docutils, python-pexpect, python-importlib-resources)
(python-simplegeneric, python-urwid, python-xlrd, python-xlwt)
(python-pyasn1, python-pythondialog, python-tftpy, python-random2)
(python-arcp, python-pyopengl, python-sortedcollections)
(python-sortedcontainers, python-yapsy, python-pydispatcher)
(python-posix-ipc)[home-page]: Likewise.
* gnu/packages/qt.scm (qwt, libqglviewer, signond)[home-page]: Likewise.
* gnu/packages/radio.scm (unixcw, gnuais)[home-page]: Likewise.
* gnu/packages/raspberry-pi.scm (bcm2835)[home-page]: Likewise.
* gnu/packages/rdf.scm (clucene, rasqal, redland)[home-page]: Likewise.
* gnu/packages/regex.scm (tre)[home-page]: Likewise.
* gnu/packages/rsync.scm (librsync)[home-page]: Likewise.
* gnu/packages/ruby.scm (ruby-packnga, ruby-nokogiri, ruby-oj, ruby-ox)
(ruby-sinatra, ruby-citrus, ruby-cbor, ruby-roda)[home-page]: Likewise.
* gnu/packages/scheme.scm (scheme48, tinyscheme)[home-page]: Likewise.
* gnu/packages/screen.scm (dtach)[home-page]: Likewise.
* gnu/packages/scsi.scm (sg3-utils)[home-page]: Likewise.
* gnu/packages/sdl.scm (libmikmod, sdl-pango)[home-page]: Likewise.
* gnu/packages/shellutils.scm (hstr, rig)[home-page]: Likewise.
* gnu/packages/simulation.scm (python-dolfin-adjoint)[home-page]:
Likewise.
* gnu/packages/smalltalk.scm (smalltalk)[home-page]: Likewise.
* gnu/packages/speech.scm (espeak)[home-page]: Likewise.
* gnu/packages/stalonetray.scm (stalonetray)[home-page]: Likewise.
* gnu/packages/statistics.scm (jags, r-mass, r-class, r-lattice)
(r-matrix, r-nnet, r-spatial, r-bit, r-bit64, r-digest, r-xtable)
(python-statsmodels, r-ade4, r-latticeextra, r-rcurl, r-xml, r-mvtnorm)
(r-robustbase, r-minqa, r-fdrtool, java-jdistlib, xlispstat)[home-page]:
Likewise.
* gnu/packages/swig.scm (swig)[home-page]: Likewise.
* gnu/packages/task-management.scm (wtime)[home-page]: Likewise.
* gnu/packages/tcl.scm (itcl, tclxml, tclx)[home-page]: Likewise.
* gnu/packages/terminals.scm (libtermkey, mlterm, libvterm)
(libvterm)[home-page]: Likewise.
* gnu/packages/tex.scm (texlive-lm, texlive-lm-math, texlive-cs)
(texlive-csplain, biber, texmaker)[home-page]: Likewise.
* gnu/packages/text-editors.scm (joe)[home-page]: Likewise.
* gnu/packages/textutils.scm (drm-tools, docx2txt)[home-page]: Likewise.
* gnu/packages/tv.scm (tvtime)[home-page]: Likewise.
* gnu/packages/unicode.scm (libunibreak)[home-page]: Likewise.
* gnu/packages/upnp.scm (libupnp)[home-page]: Likewise.
* gnu/packages/version-control.scm (cvs)[home-page]: Likewise.
* gnu/packages/video.scm (transcode, libquicktime, mjpegtools, aalib)
(liba52, libmpeg2, x265, libdv, dvdauthor, aegisub, pitivi, gavl)
(dvdbackup, guvcview, video-contact-sheet)[home-page]: Likewise.
* gnu/packages/virtualization.scm (bochs)[home-page]: Likewise.
* gnu/packages/w3m.scm (w3m)[home-page]: Likewise.
* gnu/packages/web.scm (qjson, libquvi-scripts, libquvi, quvi)
(tidy-html, htmlcxx)[home-page]: Likewise.
* gnu/packages/wm.scm (evilwm, menumaker)[home-page]: Likewise.
* gnu/packages/wv.scm (wv)[home-page]: Likewise.
* gnu/packages/wxwidgets.scm (wxsvg)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (mtdev, xsel)[home-page]: Likewise.
* gnu/packages/xfig.scm (xfig, transfig)[home-page]: Likewise.
* gnu/packages/xml.scm (openjade, python-pyxb, xmlstarlet, xmlrpc-c)
(opensp)[home-page]: Likewise.
* gnu/packages/xorg.scm (xf86-video-qxl)[home-page]: Likewise.
2023-02-12 00:00:00 +00:00
|
|
|
(home-page "https://wtime.sourceforge.net")
|
2022-04-19 07:26:54 +00:00
|
|
|
(synopsis
|
|
|
|
"Command-line utility for tracking time spent on arbitrary tasks")
|
|
|
|
(description
|
|
|
|
"@code{wtime} is a command-line utility for tracking time spent working
|
|
|
|
on arbitrary tasks. All the time data is saved in files residing in the
|
|
|
|
@code{.wtimed} directory in the user's home directory.")
|
|
|
|
(license license:x11)))
|
|
|
|
|
2021-12-15 09:52:18 +00:00
|
|
|
(define-public todoman
|
|
|
|
(package
|
|
|
|
(name "todoman")
|
|
|
|
(version "4.1.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "todoman" version))
|
|
|
|
(sha256
|
|
|
|
(base32 "1j2h5cv8wnmw41fpz1ggsgi599qhk184cas9kgd92glj3m4alg6f"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'patch-tests
|
|
|
|
(lambda _
|
|
|
|
(substitute* '("tests/test_cli.py" "tests/test_formatter.py")
|
|
|
|
(("tests\\.helpers") "helpers"))))
|
|
|
|
(replace 'check
|
|
|
|
(lambda* (#:key inputs outputs tests? #:allow-other-keys)
|
|
|
|
(when tests?
|
|
|
|
(invoke "pytest" "-vv" "tests" "-k"
|
|
|
|
(string-append
|
|
|
|
;; Test expects wrong output string.
|
|
|
|
"not test_bad_start_date "
|
|
|
|
;; Unknown failure
|
|
|
|
"and not test_default_command_args"))))))))
|
|
|
|
(native-inputs
|
|
|
|
(list python-setuptools-scm
|
|
|
|
python-pytest
|
|
|
|
python-pytest-cov
|
|
|
|
python-freezegun))
|
|
|
|
(propagated-inputs
|
|
|
|
(list python-atomicwrites
|
|
|
|
python-click
|
|
|
|
python-click-log
|
|
|
|
python-dateutil
|
|
|
|
python-humanize
|
|
|
|
python-icalendar
|
|
|
|
python-parsedatetime
|
|
|
|
python-pyxdg
|
|
|
|
python-urwid))
|
|
|
|
(home-page "https://todoman.readthedocs.io/")
|
|
|
|
(synopsis "CalDav-based todo manager")
|
|
|
|
(description "Todoman is a simple, standards-based, cli todo (aka: task)
|
|
|
|
manager. Todos are stored into icalendar files, which means you can sync
|
|
|
|
them via CalDAV using, for example, @code{vdirsyncer}.")
|
|
|
|
(license license:isc)))
|
|
|
|
|