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

* gnu/packages/emacs-xyz.scm (emacs-highlight-defined)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-04-08 23:40:13 +02:00
parent 8792f08b09
commit fa8976d6ca
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 7 deletions

View File

@ -11036,14 +11036,13 @@ decrease the number at point.")
(version "0.1.5") (version "0.1.5")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append (uri (git-reference
"https://github.com/Fanael/highlight-defined/archive/" (url "https://github.com/Fanael/highlight-defined.git")
version ".tar.gz")) (commit version)))
(file-name (string-append name "-" version ".tar.gz")) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "08czwa165rnd5z0dwwdddn7zi5w63sdk31l47bj0598kbly01n7r"))))
"1ryd66989b5byqdw8jmjrjf0c78iiz72wibld750skcnj5h5h506"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(home-page "https://github.com/Fanael/highlight-defined") (home-page "https://github.com/Fanael/highlight-defined")
(synopsis "Syntax highlighting of known Elisp symbols") (synopsis "Syntax highlighting of known Elisp symbols")