mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 15:22:18 -05:00
gnu: ruby-gherkin: Update to 26.1.0, fixing build.
* gnu/packages/ruby.scm (ruby-gherkin): Update to 26.1.0. [source]: Adjust URL. [arguments]: Add a #:phases argument. [home-page]: Adjust URL. [native-inputs]: Move ruby-cucumber-messages to... [propagated-inputs]: ... here.
This commit is contained in:
parent
b3a5f534d5
commit
1e1c726cdc
1 changed files with 11 additions and 8 deletions
|
@ -8025,26 +8025,29 @@ (define-public ruby-cucumber-messages
|
|||
(define-public ruby-gherkin
|
||||
(package
|
||||
(name "ruby-gherkin")
|
||||
(version "14.0.1")
|
||||
(version "26.1.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/cucumber/gherkin-ruby")
|
||||
(url "https://github.com/cucumber/gherkin")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1dwa8632nc6kijv8p257jl64rsjmc0fimlaqvxlkdi2h9n1nympb"))))
|
||||
"1rsannfcg5rqh5a3d3paw10kf6mmqjrgbq3k235px4swbyqysmgn"))))
|
||||
(build-system ruby-build-system)
|
||||
(native-inputs
|
||||
(list ruby-cucumber-messages ruby-rspec))
|
||||
(arguments
|
||||
`(#:test-target "spec"))
|
||||
(arguments (list #:test-target "spec"
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda _
|
||||
(chdir "ruby"))))))
|
||||
(native-inputs (list ruby-rspec))
|
||||
(propagated-inputs (list ruby-cucumber-messages))
|
||||
(synopsis "Gherkin parser for Ruby")
|
||||
(description "Gherkin is a parser and compiler for the Gherkin language.
|
||||
It is intended be used by all Cucumber implementations to parse
|
||||
@file{.feature} files.")
|
||||
(home-page "https://github.com/cucumber/gherkin-ruby")
|
||||
(home-page "https://github.com/cucumber/gherkin")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-gherkin-ruby
|
||||
|
|
Loading…
Reference in a new issue