gnu: Add emacs-pubmed.

* gnu/packages/emacs-xyz.scm (emacs-pubmed): New variable.

Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
This commit is contained in:
Brian Leung 2019-09-03 05:13:36 +02:00 committed by Oleg Pykhalov
parent d070a0884c
commit 948c700b90
No known key found for this signature in database
GPG key ID: 167F8EA5001AFA9C

View file

@ -9701,6 +9701,32 @@ included by default, and more can be readily added.")
(description "This package provides functions for converting Unicode to ASCII.") (description "This package provides functions for converting Unicode to ASCII.")
(license license:gpl2+)))) (license license:gpl2+))))
(define-public emacs-pubmed
(package
(name "emacs-pubmed")
(version "0.2.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.com/fvdbeek/emacs-pubmed.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"15bwjxc7g43m5pi8z17anaqqkvi209r7kk1chmf175477gvrv7c0"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-deferred" ,emacs-deferred)
("emacs-esxml" ,emacs-esxml)
("emacs-s" ,emacs-s)
("emacs-unidecode" ,emacs-unidecode)))
(home-page "https://gitlab.com/fvdbeek/emacs-pubmed")
(synopsis "Interface to PubMed")
(description "This package provides an Emacs interface to the PubMed
database of references on life sciences.")
(license license:gpl3+)))
(define-public emacs-websocket (define-public emacs-websocket
(package (package
(name "emacs-websocket") (name "emacs-websocket")