mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: ruby-ansi: Don't use unstable tarball.
* gnu/packages/ruby.scm (ruby-ansi)[source]: Download using git-fetch.
This commit is contained in:
parent
11d1b31807
commit
3d30c33210
1 changed files with 7 additions and 6 deletions
|
@ -6578,14 +6578,15 @@ (define-public ruby-ansi
|
|||
(version "1.5.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(method git-fetch)
|
||||
;; Fetch from GitHub as the gem does not contain testing code.
|
||||
(uri (string-append "https://github.com/rubyworks/ansi/archive/"
|
||||
version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(uri (git-reference
|
||||
(url "https://github.com/rubyworks/ansi")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1zdip30hivyipi8hndhb457bhiz033awd00bgrsk5axjrwp6zhly"))))
|
||||
"1wsz7xxwl3vkh277jb7fd7akqnqqgbvalxzpjwniiqk8ghfprbi5"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
|
@ -6616,7 +6617,7 @@ (define-public ruby-ansi
|
|||
@code{ProgressBar}, and a @code{String} subclass. The library also includes a
|
||||
@code{Terminal} module which provides information about the current output
|
||||
device.")
|
||||
(home-page "https://rubyworks.github.io/ansi")
|
||||
(home-page "https://rubyworks.github.io/ansi/")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public ruby-systemu
|
||||
|
|
Loading…
Reference in a new issue