Compare commits

...

3 Commits

Author SHA1 Message Date
Collin J. Doering 58deed2341
emacs-xyz: Add emacs-org-projectile-helm
* rekahsoft-gnu/packages/emacs-xyz.scm (emacs-org-projectile-helm): New
variable.
2023-04-04 10:58:13 -04:00
Collin J. Doering c157b75930
emacs-xyz: Add emacs-org-projectile
* rekahsoft-gnu/packages/emacs-xyz.scm (emacs-org-projectile): New
variable.
2023-04-04 10:57:49 -04:00
Collin J. Doering 956492c4ff
emacs-xyz: Add emacs-org-category-capture
* rekahsoft-gnu/packages/emacs-xyz.scm (emacs-org-category-capture): New
variable.
2023-04-04 10:56:31 -04:00
1 changed files with 73 additions and 0 deletions

View File

@ -900,3 +900,76 @@ the same functionality as it, but for rcirc.")
(synopsis "Haskell support for lsp-mode")
(description "Haskell specific adapter for LSP mode")
(license license:gpl3)))
(define-public emacs-org-category-capture
(package
(name "emacs-org-category-capture")
(version "20220114.730")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/IvanMalison/org-projectile.git")
(commit "642b39c698db00bc535c1c2335f425fb9f4855a9")))
(sha256
(base32
"1pcfyrmbnsk39w4d6cs27bcyihics3gll515fslnl5kqbaj9qn09"))))
(build-system emacs-build-system)
(propagated-inputs (list emacs-org))
(arguments
'(#:include '("^org-category-capture.el$")
#:exclude '()))
(home-page "https://github.com/IvanMalison/org-projectile")
(synopsis "Contextualy capture of org-mode TODOs.")
(description
"This package provides an interface that can be used to capture TODOs with a
category that is selected depending on a some piece of Emacs context.")
(license license:gpl3)))
(define-public emacs-org-projectile
(package
(name "emacs-org-projectile")
(version "20220114.730")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/IvanMalison/org-projectile.git")
(commit "642b39c698db00bc535c1c2335f425fb9f4855a9")))
(sha256
(base32
"1pcfyrmbnsk39w4d6cs27bcyihics3gll515fslnl5kqbaj9qn09"))))
(build-system emacs-build-system)
(propagated-inputs (list emacs-projectile emacs-dash emacs-s
emacs-org-category-capture))
(arguments
'(#:include '("^org-projectile.el$")
#:exclude '()))
(home-page "https://github.com/IvanMalison/org-projectile")
(synopsis "Repository todo management for org-mode")
(description
"This package aims to provide an easy interface to creating per project org-mode
TODO headings.")
(license license:gpl3)))
(define-public emacs-org-projectile-helm
(package
(name "emacs-org-projectile-helm")
(version "20180601.1822")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/IvanMalison/org-projectile.git")
(commit "642b39c698db00bc535c1c2335f425fb9f4855a9")))
(sha256
(base32
"1pcfyrmbnsk39w4d6cs27bcyihics3gll515fslnl5kqbaj9qn09"))))
(build-system emacs-build-system)
(propagated-inputs (list emacs-org-projectile emacs-helm emacs-helm-org))
(arguments
'(#:include '("^org-projectile-helm.el$")
#:exclude '()))
(home-page "https://github.com/IvanMalison/org-projectile")
(synopsis "helm functions for org-projectile")
(description
"This package aims to provide an easy interface to creating per project org-mode
TODO headings.")
(license license:gpl3)))