me
/
guix
Archived
1
0
Fork 0

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") (version "2.0.0")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/skeeto/elisp-finalize/archive/" (uri (git-reference
version ".tar.gz")) (url "https://github.com/skeeto/elisp-finalize.git")
(file-name (string-append name "-" version ".tar.gz")) (commit version)))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "1gvlm4i62af5jscwz0jccc8ra0grprxpg2rlq91d5nn8dn5lpy79"))))
"077fycy3i5f0kjw5z3rhf4kld5lbk2idz690nkwhkz04vppk4q4x"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(propagated-inputs (propagated-inputs
`(("emacs-cl-generic" ,emacs-cl-generic))) `(("emacs-cl-generic" ,emacs-cl-generic)))