summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorCayetano Santos via Guix-patches via <guix-patches@gnu.org>2023-01-20 17:38:03 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2023-01-21 00:00:32 +0100
commit23c3c747fd28a557711c1df489e3edfad36eaf5b (patch)
tree6cc740b9f5839444e12283cdd244b3225d9d4159 /gnu
parent8b9d671c683855d3ec6f75b70b6f1c098854cb4d (diff)
gnu: emacs-biblio: Update to 0.2-1.517ec18.
* gnu/packages/emacs-xyz.scm (emacs-biblio): Update to 0.2-1.517ec18. [propagated-inputs]: Add EMACS-SEQ.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/emacs-xyz.scm41
1 files changed, 22 insertions, 19 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index da03d13ced..44153401ec 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -20935,30 +20935,33 @@ with (La)TeX mode, Org mode and other Emacs editing modes.")
license:gpl3+))))
(define-public emacs-biblio
- (package
- (name "emacs-biblio")
- (version "0.2")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/cpitclaudel/biblio.el")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "1gxjind6r235az59dr8liv03d8994mqb8a7m28j3c12q7p70aziz"))))
- (build-system emacs-build-system)
- (propagated-inputs
- (list emacs-dash emacs-let-alist))
- (home-page "https://github.com/cpitclaudel/biblio.el")
- (synopsis "Browse and import bibliographic references")
- (description "This package provides an extensible Emacs package for
+ (let ((commit "517ec18f00f91b61481214b178f7ae0b8fbc499b")
+ (revision "1"))
+ (package
+ (name "emacs-biblio")
+ (version (git-version "0.2" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/cpitclaudel/biblio.el")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0m5vpyj6312rc3xq8lrr1g2hyl26adzwvjxb3jqrm7bvqvs4i5zp"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ (list emacs-dash emacs-let-alist emacs-seq))
+ (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+)))
+ (license license:gpl3+))))
(define-public emacs-citar
(package