mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 14:47:20 +01:00
gnu: ruby-cucumber-tag-expressions: Update to 5.0.1, fixing build.
* gnu/packages/ruby.scm (ruby-cucumber-tag-expressions): Update to 5.0.1. [source]: Update URI. [arguments]: Add a #:phases argument. [home-page]: Update URL.
This commit is contained in:
parent
a133212daf
commit
ca2255df1b
1 changed files with 10 additions and 7 deletions
|
@ -8454,26 +8454,29 @@ (define-public ruby-cucumber-wire
|
|||
(define-public ruby-cucumber-tag-expressions
|
||||
(package
|
||||
(name "ruby-cucumber-tag-expressions")
|
||||
(version "3.0.0")
|
||||
(version "5.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/cucumber/tag-expressions-ruby")
|
||||
(url "https://github.com/cucumber/tag-expressions")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"15dw4w0npd4m6aw7zhqkjxxzngp42kswrkwfygxkxcxnhy5zl1vx"))))
|
||||
"1ziq30szn8m5y29hsdpx4dn1a8sy29h01nvcldm8nr1mx4b7dj1w"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
`(#:test-target "spec"))
|
||||
(native-inputs
|
||||
(list ruby-rspec))
|
||||
(list #:test-target "spec"
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda _
|
||||
(chdir "ruby"))))))
|
||||
(native-inputs (list ruby-rspec))
|
||||
(synopsis "Cucumber tag expressions for Ruby")
|
||||
(description "Cucumber tag expression parser for Ruby. A tag expression
|
||||
is an infix boolean expression used by Cucumber.")
|
||||
(home-page "https://github.com/cucumber/tag-expressions-ruby")
|
||||
(home-page "https://github.com/cucumber/tag-expressions")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-bindex
|
||||
|
|
Loading…
Reference in a new issue