mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00: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 @@ Cucumber.")
|
||||||
(define-public ruby-gherkin
|
(define-public ruby-gherkin
|
||||||
(package
|
(package
|
||||||
(name "ruby-gherkin")
|
(name "ruby-gherkin")
|
||||||
(version "14.0.1")
|
(version "26.1.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/cucumber/gherkin-ruby")
|
(url "https://github.com/cucumber/gherkin")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1dwa8632nc6kijv8p257jl64rsjmc0fimlaqvxlkdi2h9n1nympb"))))
|
"1rsannfcg5rqh5a3d3paw10kf6mmqjrgbq3k235px4swbyqysmgn"))))
|
||||||
(build-system ruby-build-system)
|
(build-system ruby-build-system)
|
||||||
(native-inputs
|
(arguments (list #:test-target "spec"
|
||||||
(list ruby-cucumber-messages ruby-rspec))
|
#:phases #~(modify-phases %standard-phases
|
||||||
(arguments
|
(add-after 'unpack 'chdir
|
||||||
`(#:test-target "spec"))
|
(lambda _
|
||||||
|
(chdir "ruby"))))))
|
||||||
|
(native-inputs (list ruby-rspec))
|
||||||
|
(propagated-inputs (list ruby-cucumber-messages))
|
||||||
(synopsis "Gherkin parser for Ruby")
|
(synopsis "Gherkin parser for Ruby")
|
||||||
(description "Gherkin is a parser and compiler for the Gherkin language.
|
(description "Gherkin is a parser and compiler for the Gherkin language.
|
||||||
It is intended be used by all Cucumber implementations to parse
|
It is intended be used by all Cucumber implementations to parse
|
||||||
@file{.feature} files.")
|
@file{.feature} files.")
|
||||||
(home-page "https://github.com/cucumber/gherkin-ruby")
|
(home-page "https://github.com/cucumber/gherkin")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-gherkin-ruby
|
(define-public ruby-gherkin-ruby
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue