diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-11-06 22:15:36 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-11-06 22:15:36 +0100 |
commit | 9c306695511245d3c42df6c7203131e2d99d6527 (patch) | |
tree | a7fec82d6f3fadc1a652adc74e87c2ecaf8f462e | |
parent | 290a7664b58d2a018096c6388ae3468eb4cd88ec (diff) | |
download | guix-9c306695511245d3c42df6c7203131e2d99d6527.tar.gz guix-9c306695511245d3c42df6c7203131e2d99d6527.zip |
gnu: Add emacs-citar.
* gnu/packages/emacs-xyz.scm (emacs-citar): New variable.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 86271cb392..9cc8c5d6e2 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -17755,6 +17755,42 @@ and publications from various sources, by keywords or by DOI. References are automatically fetched from well-curated sources, and formatted as BibTeX.") (license license:gpl3+))) +(define-public emacs-citar + (package + (name "emacs-citar") + (version "0.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bdarcus/citar") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1jrfcfr976c9nb2vpfrh6yhck5gm34wcjzbk0m6gq2xg3qfv2g6p")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-auctex" ,emacs-auctex) + ("emacs-helm-bibtex" ,emacs-helm-bibtex) + ("emacs-org" ,emacs-org) + ("emacs-parsebib" ,emacs-parsebib) + ("emacs-s" ,emacs-s))) + (home-page "https://github.com/bdarcus/citar") + (synopsis "Emacs package to quickly find and act on bibliographic entries") + (description + "This package provides a completing-read front-end to browse and +act on BibTeX, BibLaTeX, and CSL JSON bibliographic data, and LaTeX, +markdown, and Org cite editing support. + +When used with Vertico (or Selectrum), Embark, and Marginalia, it +provides similar functionality to helm-bibtex and ivy-bibtex: quick +filtering and selecting of bibliographic entries from the minibuffer, +and the option to run different commands against them. + +With Embark, it also makes available at-point actions in Org +citations.") + (license license:gpl3+))) + (define-public emacs-helm-bibtex (let ((commit "d4471232be26793fbf56c0ac3690b5f537c378b9") (revision "2")) |