mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add emacs-biblio.
* gnu/packages/emacs.scm (emacs-biblio): New public variable.
This commit is contained in:
parent
de8d991289
commit
55d5321093
1 changed files with 24 additions and 0 deletions
|
@ -8182,3 +8182,27 @@ (define-public emacs-parsebib
|
|||
(description
|
||||
"This package provides an Emacs library for parsing bib files.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-biblio
|
||||
(package
|
||||
(name "emacs-biblio")
|
||||
(version "0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/cpitclaudel/biblio.el/archive/"
|
||||
version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"109fvivsb4r0rbqljngqrmxqvbnbkqlivczx6brrvlr7ci625lhf"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/cpitclaudel/biblio.el")
|
||||
(synopsis "Browse and import bibliographic references")
|
||||
(description "This package provides an extensible Emacs package for
|
||||
browsing and fetching references.
|
||||
|
||||
@file{biblio.el} makes it easy to browse and gather bibliographic 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+)))
|
||||
|
|
Loading…
Reference in a new issue