mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 15:10:16 -05:00
gnu: Add emacs-org-journal.
* gnu/packages/emacs-xyz.scm (emacs-org-journal): New Variable.
This commit is contained in:
parent
e2ca10a46f
commit
1eb3b2b666
1 changed files with 27 additions and 0 deletions
|
@ -61,6 +61,7 @@
|
||||||
;;; Copyright © 2020 Robert Smith <robertsmith@posteo.net>
|
;;; Copyright © 2020 Robert Smith <robertsmith@posteo.net>
|
||||||
;;; Copyright © 2020 Evan Straw <evan.straw99@gmail.com>
|
;;; Copyright © 2020 Evan Straw <evan.straw99@gmail.com>
|
||||||
;;; Copyright © 2020 Masaya Tojo <masaya@tojo.tokyo>
|
;;; Copyright © 2020 Masaya Tojo <masaya@tojo.tokyo>
|
||||||
|
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -21734,6 +21735,32 @@ (define-public emacs-csv
|
||||||
Format and MIME Type for CSV Files\" (@url{http://tools.ietf.org/html/rfc4180}).")
|
Format and MIME Type for CSV Files\" (@url{http://tools.ietf.org/html/rfc4180}).")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-org-journal
|
||||||
|
(package
|
||||||
|
(name "emacs-org-journal")
|
||||||
|
(version "2.0.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/bastibe/org-journal.git")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "18dqd0jy2x530lk0h4fcn9cld9qh4w7b3vxa60fpiia628vsv1dg"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/bastibe/org-journal")
|
||||||
|
(synopsis "Simple Org mode journaling mode")
|
||||||
|
(description
|
||||||
|
"Org Journal is a set of functions to maintain a simple personal diary /
|
||||||
|
journal using in Emacs, adapted from
|
||||||
|
@url{https://www.emacswiki.org/emacs/PersonalDiary}. Convenient bindings
|
||||||
|
allow the creation of journal records in the current daily, weekly, monthly or
|
||||||
|
yearly file and search within all records or specified time intervals. All
|
||||||
|
records can be browsed and searched from the Emacs Calendar for convenience.
|
||||||
|
All entries in a specified TODO state will be carried over to the next day.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public emacs-ddskk
|
(define-public emacs-ddskk
|
||||||
;; XXX: Upstream adds code names to their release tags, so version and code
|
;; XXX: Upstream adds code names to their release tags, so version and code
|
||||||
;; name below need to be updated together.
|
;; name below need to be updated together.
|
||||||
|
|
Loading…
Reference in a new issue