[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/10: gnu: emacs-tablist: Don't use unstable tarball.
From: |
guix-commits |
Subject: |
09/10: gnu: emacs-tablist: Don't use unstable tarball. |
Date: |
Wed, 27 Mar 2019 17:05:36 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 0f8ff5551393c6293547201f0ef3e61cf920d707
Author: Efraim Flashner <address@hidden>
Date: Wed Mar 27 23:00:01 2019 +0200
gnu: emacs-tablist: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-tablist)[source]: Download using
git-fetch.
---
gnu/packages/emacs-xyz.scm | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 99c3940..879456a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1581,14 +1581,14 @@ single buffer.")
(name "emacs-tablist")
(version "0.70")
(source (origin
- (method url-fetch)
- (uri (string-append
- "https://github.com/politza/tablist/archive/v"
- version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/politza/tablist.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "177d6s7ym1mwz1nhnl09r14z3n093g9a2szm97xsaig0c204xz9c"))))
+ "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns"))))
(build-system emacs-build-system)
(home-page "https://github.com/politza/tablist")
(synopsis "Extension for @code{tabulated-list-mode}")
- branch master updated (c6abe90 -> d8de2c0), guix-commits, 2019/03/27
- 02/10: gnu: emacs-autothemer: Don't use unstable tarball., guix-commits, 2019/03/27
- 06/10: gnu: emacs-mmm-mode: Don't use unstable tarball., guix-commits, 2019/03/27
- 10/10: gnu: emacs-emmet-mode: Don't use unstable tarball., guix-commits, 2019/03/27
- 01/10: gnu: emacs-ag: Don't use unstable tarball., guix-commits, 2019/03/27
- 03/10: gnu: emacs-calfw: Don't use unstable tarball., guix-commits, 2019/03/27
- 04/10: gnu: emacs-direnv: Don't use unstable tarball., guix-commits, 2019/03/27
- 08/10: gnu: emacs-mmm-mode: Update to 0.5.7., guix-commits, 2019/03/27
- 07/10: gnu: emacs-mmm-mode: Remove unnecessary phase., guix-commits, 2019/03/27
- 05/10: gnu: emacs-google-maps: Don't use unstable tarball., guix-commits, 2019/03/27
- 09/10: gnu: emacs-tablist: Don't use unstable tarball.,
guix-commits <=