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:
parent
b762dde997
commit
0f8ff55513
|
@ -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}")
|
||||||
|
|
Loading…
Reference in New Issue