me
/
guix
Archived
1
0
Fork 0

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.
master
Maxim Cournoyer 2023-03-06 15:41:14 -05:00
parent a133212daf
commit ca2255df1b
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 10 additions and 7 deletions

View File

@ -8454,26 +8454,29 @@ implemented and invoked on any platform.")
(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