mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add emacs-helm-wikipedia.
* gnu/packages/emacs-xyz.scm (emacs-helm-wikipedia): New variable.
This commit is contained in:
parent
2390e0d4d6
commit
c0aaca02c7
1 changed files with 25 additions and 0 deletions
|
@ -13783,3 +13783,28 @@ (define-public emacs-nhexl-mode
|
|||
C-f} to advance by #xa4 characters.
|
||||
@end itemize\n")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-helm-wikipedia
|
||||
(let ((commit "126f044e0a0e1432e0791c33ce2a41875d704a9b"))
|
||||
(package
|
||||
(name "emacs-helm-wikipedia")
|
||||
(version (git-version "0.0.0" "1" commit))
|
||||
(home-page "https://github.com/emacs-helm/helm-wikipedia/")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url home-page)
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"148a5xsnbsiddhf9cl7yxdk41lrv38h0pip91kcflw9d7l0dp7pr"))))
|
||||
(build-system emacs-build-system)
|
||||
(inputs
|
||||
`(("helm" ,emacs-helm)))
|
||||
(synopsis "Search suggestions and article extracts from Wikipedia for Emacs")
|
||||
(description
|
||||
"This package provides an Emacs Helm interface for search suggestions
|
||||
and article extracts for Wikipedia.")
|
||||
(license license:gpl3+))))
|
||||
|
|
Loading…
Reference in a new issue