gnu: emacs-paren-face: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-paren-face)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-03-31 04:19:23 +02:00
parent d8ddc91cfb
commit be7344bed3
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

@ -2357,13 +2357,13 @@ Lisp.")
(version "1.0.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/tarsius/paren-face/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/tarsius/paren-face.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0y4qrhxa9332vsvr999jg7qj1ymnfgwpf591yi4a4jgg90pm7qnn"))))
(base32 "0f128gqn170s6hl62n44i9asais75ns1mpvb4l8vzy1sc0v16c0k"))))
(build-system emacs-build-system)
(home-page "https://github.com/tarsius/paren-face")
(synopsis "Face for parentheses in lisp modes")