gnu: Add emacs-pubmed.

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

Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
master
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
1 changed files with 26 additions and 0 deletions

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.")
(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
(package
(name "emacs-websocket")