gnu: emacs-smart-mode-line: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-smart-mode-line)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
master
Tobias Geerinckx-Rice 2019-04-04 19:26:34 +02:00
parent 349eb1bc20
commit b3093d1c00
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

@ -2579,13 +2579,13 @@ snippets for yasnippet.")
(version "2.12.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/Malabarba/smart-mode-line/"
"archive/" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/Malabarba/smart-mode-line.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1hn8s6laijmg7w1bgwdfrki6h9vxkbgr8rmmssvd5yqyad5w2sba"))))
(base32 "1gs4ay9hdg8gmia4ir74qawk80pqwv99hp4yhy108kpfry5mrq6z"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-rich-minority" ,emacs-rich-minority)))