all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#56883] [PATCH] gnu: Add emacs-consult-bibtex.
@ 2022-08-02 12:00 Nicolas Graves via Guix-patches via
  2022-08-25 10:28 ` bug#56883: " Nicolas Goaziou
  0 siblings, 1 reply; 2+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2022-08-02 12:00 UTC (permalink / raw)
  To: 56883; +Cc: Nicolas Graves

* gnu/packages/emacs-xyz.scm (emacs-consult-bibtex): New variable.
---
 gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a2d207574e..df0b77ea71 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -9085,6 +9085,29 @@ (define-public emacs-consult
 list of candidates.")
     (license license:gpl3+)))
 
+(define-public emacs-consult-bibtex
+  (let ((commit "2f870d6eefb54a53216d90a82cff0ff97ba54725")
+        (revision "0"))
+    (package
+      (name "emacs-consult-bibtex")
+      (version (git-version "0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/mohkale/consult-bibtex")
+                      (commit commit)))
+                (sha256
+                 (base32
+                  "0jxjvpg3j8zk77sfhyy27fd1zbj2zz7xayavan3hhj4853q92kwq"))))
+      (build-system emacs-build-system)
+      (arguments `(#:emacs ,build-emacs))
+      (inputs (list emacs-org-roam-bibtex emacs-consult emacs-embark))
+      (home-page "https://github.com/mohkale/consult-bibtex")
+      (synopsis "Consulting-read interface for bibtex completion")
+      (description "This package provides a read interface for bibtex
+completion using consult.")
+      (license license:gpl3))))
+
 (define-public emacs-consult-dir
   (package
     (name "emacs-consult-dir")
-- 
2.37.1





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#56883: [PATCH] gnu: Add emacs-consult-bibtex.
  2022-08-02 12:00 [bug#56883] [PATCH] gnu: Add emacs-consult-bibtex Nicolas Graves via Guix-patches via
@ 2022-08-25 10:28 ` Nicolas Goaziou
  0 siblings, 0 replies; 2+ messages in thread
From: Nicolas Goaziou @ 2022-08-25 10:28 UTC (permalink / raw)
  To: Nicolas Graves via Guix-patches via; +Cc: 56883-done, Nicolas Graves

Hello,

Nicolas Graves via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-consult-bibtex): New variable.

Applied with the changes below. Thank you.

> +(define-public emacs-consult-bibtex
> +  (let ((commit "2f870d6eefb54a53216d90a82cff0ff97ba54725")
> +        (revision "0"))
> +    (package
> +      (name "emacs-consult-bibtex")
> +      (version (git-version "0" revision commit))

The version is "0.1" and upstream's single commit matches it so
I removed the `git-version' part.

> +      (source (origin
> +                (method git-fetch)
> +                (uri (git-reference
> +                      (url "https://github.com/mohkale/consult-bibtex")
> +                      (commit commit)))
> +                (sha256
> +                 (base32
> +                  "0jxjvpg3j8zk77sfhyy27fd1zbj2zz7xayavan3hhj4853q92kwq"))))
> +      (build-system emacs-build-system)
> +      (arguments `(#:emacs ,build-emacs))

I removed this fancy entry.

> +      (inputs (list emacs-org-roam-bibtex emacs-consult emacs-embark))

I listed inputs alphabetically.

> +      (home-page "https://github.com/mohkale/consult-bibtex")
> +      (synopsis "Consulting-read interface for bibtex completion")
> +      (description "This package provides a read interface for bibtex
> +completion using consult.")
> +      (license license:gpl3))))

License is actually gpl3+. I fixed it in a subsequent commit.

Regards,
-- 
Nicolas Goaziou




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-08-25 10:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-02 12:00 [bug#56883] [PATCH] gnu: Add emacs-consult-bibtex Nicolas Graves via Guix-patches via
2022-08-25 10:28 ` bug#56883: " Nicolas Goaziou

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.