[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/08: gnu: Add emacs-zotxt.
From: |
Ludovic Courtès |
Subject: |
08/08: gnu: Add emacs-zotxt. |
Date: |
Thu, 31 May 2018 12:13:19 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 555ab0853bdd5e226e60c3243f571ef9832c8ac9
Author: Konrad Hinsen <address@hidden>
Date: Mon May 28 13:07:02 2018 +0200
gnu: Add emacs-zotxt.
* gnu/packages/emacs.scm (emacs-zotxt): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index d2fa5eb..90b7fb2 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -10575,3 +10575,28 @@ be changed by customizing the appropriate variables.")
"Synchronize between events in Org-mode files and a CalDAV calendar.
This code is still alpha.")
(license license:gpl3+)))
+
+(define-public emacs-zotxt
+ (package
+ (name "emacs-zotxt")
+ (version "20180518")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/egh/zotxt-emacs/archive/"
+ "23a4a9f74a658222027d53a9a83cd4bcc583ca8b"
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1qlibaciqgsva6fc7vv9krssjq00bi880396jk7llbi3c52q9n1y"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-deferred" ,emacs-deferred)
+ ("emacs-request" ,emacs-request)))
+ (home-page "https://github.com/egh/zotxt-emacs")
+ (synopsis "Integrate Emacs with Zotero")
+ (description "This package provides two integration features between Emacs
+and the Zotero research assistant: Insertion of links to Zotero items into an
+Org-mode file, and citations of Zotero items in Pandoc Markdown files.")
+ (license license:gpl3+)))
- branch master updated (404e5c7 -> 555ab08), Ludovic Courtès, 2018/05/31
- 01/08: self: Reduce the set of dependencies., Ludovic Courtès, 2018/05/31
- 04/08: records: Make a couple of procedures available at expansion time., Ludovic Courtès, 2018/05/31
- 05/08: gnu: bear: Fix python path., Ludovic Courtès, 2018/05/31
- 02/08: file-systems: Always wait for devices to show up., Ludovic Courtès, 2018/05/31
- 03/08: system: 'read-boot-parameters' provides a more meaningful warning., Ludovic Courtès, 2018/05/31
- 06/08: gnu: Add python-bigfloat., Ludovic Courtès, 2018/05/31
- 07/08: gnu: Add emacs-org-caldav., Ludovic Courtès, 2018/05/31
- 08/08: gnu: Add emacs-zotxt.,
Ludovic Courtès <=