gnu: ruby-terminal-table: Update to 3.0.2.
* gnu/packages/ruby.scm (ruby-terminal-table): Update to 3.0.2. [source]: Fetch via git. [arguments]: Delete remove-gemfile-lock phase. [native-inputs]: Add ruby-term-ansicolor.
This commit is contained in:
parent
28078fb505
commit
60ea0da654
1 changed files with 11 additions and 12 deletions
|
@ -13183,20 +13183,19 @@ Pathname.")
|
||||||
(define-public ruby-terminal-table
|
(define-public ruby-terminal-table
|
||||||
(package
|
(package
|
||||||
(name "ruby-terminal-table")
|
(name "ruby-terminal-table")
|
||||||
(version "2.0.0")
|
(version "3.0.2")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method git-fetch)
|
||||||
(method url-fetch)
|
(uri (git-reference
|
||||||
(uri (rubygems-uri "terminal-table" version))
|
(url "https://github.com/tj/terminal-table")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"18rbrh464ysqbdv53iwj0r8frshn65566kyj044cp3x9c2754jwh"))))
|
"1c3f7ng3lxq962n8sbmlsvjx6srh5i801wzsyhxmfz2g880f5jps"))))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'check 'remove-gemfile-lock
|
|
||||||
(lambda _
|
|
||||||
(delete-file "Gemfile.lock")))
|
|
||||||
(add-before 'check 'remove-unnecessary-dependencies
|
(add-before 'check 'remove-unnecessary-dependencies
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "terminal-table.gemspec"
|
(substitute* "terminal-table.gemspec"
|
||||||
|
@ -13212,7 +13211,7 @@ Pathname.")
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list ruby-unicode-display-width))
|
(list ruby-unicode-display-width))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list ruby-rspec))
|
(list ruby-rspec ruby-term-ansicolor))
|
||||||
(home-page "https://github.com/tj/terminal-table")
|
(home-page "https://github.com/tj/terminal-table")
|
||||||
(synopsis "Simple, feature rich ASCII table generation library")
|
(synopsis "Simple, feature rich ASCII table generation library")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue