[bug#57769] gnu: Add emacs-orca.
Commit Message
* gnu/packages/emacs-xyz.scm (emacs-orca): New variable.
---
gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
Comments
Hello,
Nicolas Graves via Guix-patches via <guix-patches@gnu.org> writes:
> * gnu/packages/emacs-xyz.scm (emacs-orca): New variable.
Thank you. Applied with the changes below.
> +(define-public emacs-orca
> + (let* ((commit "0687f416a5573f63b691d384454f5a793266ed97")
> + (revision "0"))
> + (package
> + (name "emacs-orca")
> + (version (git-version "0" revision commit))
Base version is "0.1.0", not "0", according to Version keyword.
> + (description
> + "This package provides several convenient recipes for configuring
> +@code{org-capture}, mainly for capturing from a browser. It can match urls and
I capitalized Org Capture (the name of the project), instead of using
@code, which would be the name of the variable. I also added two spaces
at the end of sentences.
Regards,
@@ -30704,6 +30704,32 @@ (define-public emacs-haskell-snippets
snippets for Emacs.")
(license license:expat))))
+(define-public emacs-orca
+ (let* ((commit "0687f416a5573f63b691d384454f5a793266ed97")
+ (revision "0"))
+ (package
+ (name "emacs-orca")
+ (version (git-version "0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/abo-abo/orca")
+ (commit commit)))
+ (sha256
+ (base32 "00a363vkqvryw5s7pj0kh8pqq5vvbf1pmbzz0b1z1fckwr49sv0f"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-zoutline))
+ (home-page "https://github.com/abo-abo/orca")
+ (synopsis "Handler for Org Capture")
+ (description
+ "This package provides several convenient recipes for configuring
+@code{org-capture}, mainly for capturing from a browser. It can match urls and
+inject the capture in a targeted org file, under a targeted heading. The more
+this package is configured, the less refiling is needed on your captures: they
+will go directly to where they belong.")
+ (license license:gpl3+))))
+
(define-public emacs-org-roam
(package
(name "emacs-org-roam")