gnu: emacs-helm-gtags: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-helm-gtags)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-04-08 23:36:05 +02:00
parent 8219da2c7f
commit 40cc1884ef
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 9 additions and 9 deletions

View File

@ -9413,15 +9413,15 @@ and @code{erc-send-modify-hook} to download and show images.")
(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"))))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/syohex/emacs-helm-gtags.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0zyspn9rqfs3hkq8qx0q1w5qiv30ignbmycyv0vn3a6q7a5fsnhx"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-helm" ,emacs-helm)))