gnu: emacs-finalize: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-finalize)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-04-08 23:34:54 +02:00
parent 82cf888315
commit 98c32a1033
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

@ -8945,13 +8945,13 @@ match and total match information in the mode-line in various search modes.")
(version "2.0.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/skeeto/elisp-finalize/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/skeeto/elisp-finalize.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"077fycy3i5f0kjw5z3rhf4kld5lbk2idz690nkwhkz04vppk4q4x"))))
(base32 "1gvlm4i62af5jscwz0jccc8ra0grprxpg2rlq91d5nn8dn5lpy79"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-cl-generic" ,emacs-cl-generic)))