diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-12 01:52:50 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-12 02:22:33 +0100 |
commit | 1340ce2899acebf0ff5eec64c7db881497427016 (patch) | |
tree | 7c8253571cc9d6de26bd8fd8cdeced2a3ec2e174 /gnu/packages/guile-xyz.scm | |
parent | 1bc24bbf00e21a26d9eb71e5c89d941812dcdad7 (diff) | |
download | guix-1340ce2899acebf0ff5eec64c7db881497427016.tar.gz |
gnu: guile-colorized: Don't use unstable tarball.
* gnu/packages/guile-xyz.scm (guile-colorized)[source]: Use GIT-FETCH and GIT-FILE-NAME.
Diffstat (limited to 'gnu/packages/guile-xyz.scm')
-rw-r--r-- | gnu/packages/guile-xyz.scm | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 1ef523d9ce..60f3325e67 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -605,14 +605,15 @@ using Guile's foreign function interface.") (package (name "guile-colorized") (version "0.1") - (source (origin - (method url-fetch) - (uri (string-append "https://github.com/NalaGinrut/guile-colorized/" - "archive/v" version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "16xhc3an6aglnca8xl3mvgi8hsqzqn68vsl5ga4bz8bvbap5fn4p")))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/NalaGinrut/guile-colorized.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "10mv8c63159r3qvwwdvsgnsvdg7nc2ghak85zapwqpv4ywrqp9zc")))) (build-system guile-build-system) (native-inputs `(("guile" ,guile-2.2))) |