gnu: emacs-highlight-symbol: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-highlight-symbol)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-04-05 04:14:30 +02:00
parent d8e9ae6467
commit 8e71904ad1
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 9 additions and 9 deletions

View File

@ -3817,15 +3817,15 @@ well as completely new features.")
(package (package
(name "emacs-highlight-symbol") (name "emacs-highlight-symbol")
(version "1.3") (version "1.3")
(source (origin (source
(method url-fetch) (origin
(uri (string-append (method git-fetch)
"https://github.com/nschum/highlight-symbol.el/archive/" (uri (git-reference
version ".tar.gz")) (url "https://github.com/nschum/highlight-symbol.el.git")
(file-name (string-append name "-" version ".tar.gz")) (commit version)))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "09z13kv2g21kjjkkm3iyaz93sdjmdy2d563r8n7r7ng94acrn7f6"))))
"1n7k1qns0fn0jsyc0hrjac5nzk21xw48yc30vyrhwvc51h0b9g90"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(home-page "https://nschum.de/src/emacs/highlight-symbol") (home-page "https://nschum.de/src/emacs/highlight-symbol")
(synopsis "Automatic and manual symbol highlighting for Emacs") (synopsis "Automatic and manual symbol highlighting for Emacs")