gnu: emacs-fill-column-indicator: Don't use unstable tarball.

* gnu/packages/emacs-xyz.scm (emacs-fill-column-indicator)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-03-31 04:18:00 +02:00
parent e2ad36d074
commit 35db8f4ede
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 6 deletions

View File

@ -2229,13 +2229,13 @@ keep pressing the key until it selects what you want. There's also
(version "1.89")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/alpaker/Fill-Column-Indicator"
"/archive/v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/alpaker/Fill-Column-Indicator.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"09ab01np14bdcsr38xf95kpnvxzqr46mdjmphg3pigwnx39a3jvg"))))
(base32 "010kf8jsly74y7m6mmkn1h6y205kz23zphs50zgy2nag2p88rz9y"))))
(build-system emacs-build-system)
(home-page "https://www.emacswiki.org/emacs/FillColumnIndicator")
(synopsis "Graphically indicate the fill column")