gnu: r-colorout: Don't use unstable tarball.

* gnu/packages/statistics.scm (r-colorout)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-10-20 05:26:47 +02:00
parent fbde37884f
commit df12af98a8
No known key found for this signature in database
GPG key ID: D889B0F018C5493C

View file

@ -5736,12 +5736,13 @@ (define-public r-colorout
(version "1.2-2") (version "1.2-2")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/jalvesaq/colorout/archive/" (uri (git-reference
"v" version ".tar.gz")) (url "https://github.com/jalvesaq/colorout.git")
(file-name (string-append name "-" version ".tar.gz")) (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 "1ylwxnaq5l6ldls44wij4i6080fv002wj33q63h8nqbp52fmkl67")))) (base32 "1rsx69wjpa73c6x2hacvvvbzdzxn7wg06gizf97kasjdlb7azmp3"))))
(build-system r-build-system) (build-system r-build-system)
(home-page "https://github.com/jalvesaq/colorout") (home-page "https://github.com/jalvesaq/colorout")
(synopsis "Colorize output in the R REPL") (synopsis "Colorize output in the R REPL")