gnu: guile-colorized: Don't use unstable tarball.

* gnu/packages/guile-xyz.scm (guile-colorized)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-03-12 01:52:50 +01:00
parent 1bc24bbf00
commit 1340ce2899
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 9 additions and 8 deletions

View File

@ -605,14 +605,15 @@ using Guile's foreign function interface.")
(package (package
(name "guile-colorized") (name "guile-colorized")
(version "0.1") (version "0.1")
(source (origin (source
(method url-fetch) (origin
(uri (string-append "https://github.com/NalaGinrut/guile-colorized/" (method git-fetch)
"archive/v" version ".tar.gz")) (uri (git-reference
(file-name (string-append name "-" version ".tar.gz")) (url "https://github.com/NalaGinrut/guile-colorized.git")
(sha256 (commit (string-append "v" version))))
(base32 (file-name (git-file-name name version))
"16xhc3an6aglnca8xl3mvgi8hsqzqn68vsl5ga4bz8bvbap5fn4p")))) (sha256
(base32 "10mv8c63159r3qvwwdvsgnsvdg7nc2ghak85zapwqpv4ywrqp9zc"))))
(build-system guile-build-system) (build-system guile-build-system)
(native-inputs (native-inputs
`(("guile" ,guile-2.2))) `(("guile" ,guile-2.2)))