[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/08: gnu: r-colorout: Don't use unstable tarball.
From: |
guix-commits |
Subject: |
02/08: gnu: r-colorout: Don't use unstable tarball. |
Date: |
Sun, 20 Oct 2019 20:23:44 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit df12af98a86816e78f826b10a062bfe79de6c47a
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Sun Oct 20 05:26:47 2019 +0200
gnu: r-colorout: Don't use unstable tarball.
* gnu/packages/statistics.scm (r-colorout)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
---
gnu/packages/statistics.scm | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 8923481..7b8622e 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -5736,12 +5736,13 @@ shaped points? Now you can!")
(version "1.2-2")
(source
(origin
- (method url-fetch)
- (uri (string-append "https://github.com/jalvesaq/colorout/archive/"
- "v" version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jalvesaq/colorout.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1ylwxnaq5l6ldls44wij4i6080fv002wj33q63h8nqbp52fmkl67"))))
+ (base32 "1rsx69wjpa73c6x2hacvvvbzdzxn7wg06gizf97kasjdlb7azmp3"))))
(build-system r-build-system)
(home-page "https://github.com/jalvesaq/colorout")
(synopsis "Colorize output in the R REPL")
- branch master updated (7373eb8 -> 776aa52), guix-commits, 2019/10/20
- 05/08: gnu: bpython: Update to 0.18., guix-commits, 2019/10/20
- 06/08: gnu: snakemake: Update to 5.7.1., guix-commits, 2019/10/20
- 04/08: gnu: libdv: Don't use NAME in source URI., guix-commits, 2019/10/20
- 07/08: gnu: snakemake: Order inputs alphabetically., guix-commits, 2019/10/20
- 08/08: gnu: Remove snakemake@4., guix-commits, 2019/10/20
- 03/08: gnu: arc-theme: Update to 20190917., guix-commits, 2019/10/20
- 01/08: gnu: r-colorout: Update to 1.2-2., guix-commits, 2019/10/20
- 02/08: gnu: r-colorout: Don't use unstable tarball.,
guix-commits <=