[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: Add emacs-helm-wikipedia.
From: |
guix-commits |
Subject: |
01/01: gnu: Add emacs-helm-wikipedia. |
Date: |
Tue, 19 Mar 2019 10:55:19 -0400 (EDT) |
ambrevar pushed a commit to branch master
in repository guix.
commit c0aaca02c7d00bf2a41523f4c78fb0a484206536
Author: Pierre Neidhardt <address@hidden>
Date: Tue Mar 19 15:55:08 2019 +0100
gnu: Add emacs-helm-wikipedia.
* gnu/packages/emacs-xyz.scm (emacs-helm-wikipedia): New variable.
---
gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index dd99aae..6afd048 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+))))