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

* gnu/packages/emacs-xyz.scm (emacs-tablist)[source]: Download using
git-fetch.
This commit is contained in:
Efraim Flashner 2019-03-27 23:00:01 +02:00
parent b762dde997
commit 0f8ff55513
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 6 additions and 6 deletions

View File

@ -1581,14 +1581,14 @@ single buffer.")
(name "emacs-tablist") (name "emacs-tablist")
(version "0.70") (version "0.70")
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (string-append (uri (git-reference
"https://github.com/politza/tablist/archive/v" (url "https://github.com/politza/tablist.git")
version ".tar.gz")) (commit (string-append "v" version))))
(file-name (string-append name "-" version ".tar.gz")) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"177d6s7ym1mwz1nhnl09r14z3n093g9a2szm97xsaig0c204xz9c")))) "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(home-page "https://github.com/politza/tablist") (home-page "https://github.com/politza/tablist")
(synopsis "Extension for @code{tabulated-list-mode}") (synopsis "Extension for @code{tabulated-list-mode}")