me
/
guix
Archived
1
0
Fork 0

gnu: ruby-ansi: Don't use unstable tarball.

* gnu/packages/ruby.scm (ruby-ansi)[source]: Download using git-fetch.
master
Efraim Flashner 2019-12-28 22:50:23 +02:00
parent 11d1b31807
commit 3d30c33210
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 7 additions and 6 deletions

View File

@ -6578,14 +6578,15 @@ requests either using arguments or with an interactive prompt.")
(version "1.5.0") (version "1.5.0")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
;; Fetch from GitHub as the gem does not contain testing code. ;; Fetch from GitHub as the gem does not contain testing code.
(uri (string-append "https://github.com/rubyworks/ansi/archive/" (uri (git-reference
version ".tar.gz")) (url "https://github.com/rubyworks/ansi")
(file-name (string-append name "-" version ".tar.gz")) (commit version)))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1zdip30hivyipi8hndhb457bhiz033awd00bgrsk5axjrwp6zhly")))) "1wsz7xxwl3vkh277jb7fd7akqnqqgbvalxzpjwniiqk8ghfprbi5"))))
(build-system ruby-build-system) (build-system ruby-build-system)
(arguments (arguments
`(#:phases `(#:phases
@ -6616,7 +6617,7 @@ methods, a @code{Mixin} module for including color methods, a @code{Logger}, a
@code{ProgressBar}, and a @code{String} subclass. The library also includes a @code{ProgressBar}, and a @code{String} subclass. The library also includes a
@code{Terminal} module which provides information about the current output @code{Terminal} module which provides information about the current output
device.") device.")
(home-page "https://rubyworks.github.io/ansi") (home-page "https://rubyworks.github.io/ansi/")
(license license:bsd-2))) (license license:bsd-2)))
(define-public ruby-systemu (define-public ruby-systemu