gnu: Add emacs-org-now.

* gnu/packages/emacs-xyz.scm (emacs-org-now): New variable.

Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
This commit is contained in:
Brian Leung 2019-08-17 06:59:48 +02:00 committed by Oleg Pykhalov
parent 3615e9e6c5
commit 3eb245434b
No known key found for this signature in database
GPG key ID: 167F8EA5001AFA9C

View file

@ -2775,6 +2775,32 @@ (define-public emacs-ob-restclient
"This package integrates @code{restclient-mode} with Org.")
(license license:gpl3+))))
(define-public emacs-org-now
(let ((commit "8f6b277a73f1c66e58ccb4b7f40d406851befc91"))
(package
(name "emacs-org-now")
(version (git-version "0.1-pre" "1" commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/alphapapa/org-now.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "117zzkryznznk6h4i1jqzdn888nl019xrgxm2gza0lndx8dxsg2c"))))
(propagated-inputs
`(("emacs-dash" ,emacs-dash)))
(build-system emacs-build-system)
(home-page "https://github.com/alphapapa/org-now")
(synopsis "Show current Org tasks in a sidebar")
(description
"This package provides commands to show Org headings in a sidebar
window while working on them. After defining one heading as the \"now\"
heading, other headings can be refiled to it with one command, and back to
their original location with another.")
(license license:gpl3+))))
(define-public emacs-rich-minority
(package
(name "emacs-rich-minority")