diff options
author | Pierre Neidhardt <mail@ambrevar.xyz> | 2019-03-19 15:55:08 +0100 |
---|---|---|
committer | Pierre Neidhardt <mail@ambrevar.xyz> | 2019-03-19 15:55:08 +0100 |
commit | c0aaca02c7d00bf2a41523f4c78fb0a484206536 (patch) | |
tree | 4db028a1c94f2ab1bc47ad38c568c981324358b8 /gnu/packages | |
parent | 2390e0d4d622bb822616a9cff8c8b99be07b263b (diff) | |
download | guix-c0aaca02c7d00bf2a41523f4c78fb0a484206536.tar guix-c0aaca02c7d00bf2a41523f4c78fb0a484206536.tar.gz |
gnu: Add emacs-helm-wikipedia.
* gnu/packages/emacs-xyz.scm (emacs-helm-wikipedia): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index dd99aaedab..6afd048d36 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -13783,3 +13783,28 @@ existing text, but commands like `yank' and @command{kill-region} as well. 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+)))) |