guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/88: gnu: Add emacs-helm-bibtex.


From: Oleg Pykhalov
Subject: 07/88: gnu: Add emacs-helm-bibtex.
Date: Wed, 2 May 2018 13:21:04 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit f063e18c753459e2ff1da80221a21e2cdba65990
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 18:53:51 2018 +0300

    gnu: Add emacs-helm-bibtex.
    
    * gnu/packages/emacs.scm (emacs-helm-bibtex): New public variable.
---
 gnu/packages/emacs.scm | 47 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 9058bf2..211befa 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -8206,3 +8206,50 @@ browsing and fetching references.
 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-helm-bibtex
+  (let ((commit "8ed898fb5a68f18e9bb9973832a5c1f8abcfc463")
+        (revision "1"))
+    (package
+      (name "emacs-helm-bibtex")
+      (version (string-append "2.0.0" "-" revision "."
+                              (string-take commit 7)))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/tmalsburg/helm-bibtex.git";)
+               (commit commit)))
+         (file-name (string-append name "-" version "-checkout"))
+         (sha256
+          (base32
+           "14lyx0vbqr97p3anzrsp7m3q0kqclyjcdwplpraim403fcklzbnz"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-helm" ,emacs-helm)
+         ("emacs-parsebib" ,emacs-parsebib)
+         ("emacs-s" ,emacs-s)
+         ("emacs-dash" ,emacs-dash)
+         ("emacs-f" ,emacs-f)
+         ("emacs-biblio" ,emacs-biblio)))
+      (home-page "https://github.com/tmalsburg/helm-bibtex";)
+      (synopsis "Bibliography manager based on Helm")
+      (description "This package provides bibliography manager for Emacs,
+based on Helm and the bibtex-completion backend.
+
+Key features:
+
address@hidden
address@hidden Quick access to your bibliography from within Emacs
address@hidden Powerful search capabilities
address@hidden Provides instant search results as you type
address@hidden Tightly integrated with LaTeX authoring, emails, Org mode, etc.
address@hidden Open the PDFs, URLs, or DOIs associated with an entry
address@hidden Insert LaTeX cite commands, Ebib links, or Pandoc citations,
+BibTeX entries, or plain text references at point, attach PDFs to emails
address@hidden Support for note taking
address@hidden Quick access to online bibliographic databases such as Pubmed,
+arXiv, Google Scholar, Library of Congress, etc.
address@hidden Imports BibTeX entries from CrossRef and other sources.
address@hidden itemize\n")
+      (license license:gpl3+))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]