me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-helm-gtags.

* gnu/packages/emacs.scm (emacs-helm-gtags): New public variable.
master
Oleg Pykhalov 2018-05-02 18:54:45 +03:00
parent f445c75d51
commit 707ff55502
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 20 additions and 0 deletions

View File

@ -8277,3 +8277,23 @@ arXiv, Google Scholar, Library of Congress, etc.
(description "@code{ewmctrl} provides an Emacs interface to
@code{wmctrl} command-line window-management program.")
(license license:gpl3+))))
(define-public emacs-helm-gtags
(package
(name "emacs-helm-gtags")
(version "1.5.6")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/syohex/emacs-helm-gtags/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1a10snhg6nnnan6w9a7mcziy26vxbsr3c35i0gcarnkdp2yqng36"))))
(build-system emacs-build-system)
(home-page "https://github.com/syohex/emacs-helm-gtags")
(synopsis "Emacs Helm interface to GNU Global")
(description
"@code{emacs-helm-gtags} provides a Emacs Helm interface to GNU Global.")
(license license:gpl3+)))