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.
This commit is contained in:
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 (package
(name "emacs-helm-gtags") (name "emacs-helm-gtags")
(version "1.5.6") (version "1.5.6")
(source (origin (source
(method url-fetch) (origin
(uri (string-append (method git-fetch)
"https://github.com/syohex/emacs-helm-gtags/archive/" (uri (git-reference
version ".tar.gz")) (url "https://github.com/syohex/emacs-helm-gtags.git")
(file-name (string-append name "-" version ".tar.gz")) (commit version)))
(sha256 (file-name (git-file-name name version))
(base32 (sha256
"1a10snhg6nnnan6w9a7mcziy26vxbsr3c35i0gcarnkdp2yqng36")))) (base32 "0zyspn9rqfs3hkq8qx0q1w5qiv30ignbmycyv0vn3a6q7a5fsnhx"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(propagated-inputs (propagated-inputs
`(("emacs-helm" ,emacs-helm))) `(("emacs-helm" ,emacs-helm)))