mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add ruby-cucumber-messages
* gnu/packages/ruby.scm (ruby-cucumber-messages): New variable.
This commit is contained in:
parent
77f66f53e8
commit
dff5392f85
1 changed files with 44 additions and 0 deletions
|
@ -60,6 +60,7 @@ (define-module (gnu packages ruby)
|
||||||
#:use-module (gnu packages ncurses)
|
#:use-module (gnu packages ncurses)
|
||||||
#:use-module (gnu packages networking)
|
#:use-module (gnu packages networking)
|
||||||
#:use-module (gnu packages node)
|
#:use-module (gnu packages node)
|
||||||
|
#:use-module (gnu packages protobuf)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
#:use-module (gnu packages python-xyz)
|
#:use-module (gnu packages python-xyz)
|
||||||
#:use-module (gnu packages ragel)
|
#:use-module (gnu packages ragel)
|
||||||
|
@ -6387,6 +6388,49 @@ (define-public ruby-ruby-prof
|
||||||
(home-page "https://github.com/ruby-prof/ruby-prof")
|
(home-page "https://github.com/ruby-prof/ruby-prof")
|
||||||
(license license:bsd-2)))
|
(license license:bsd-2)))
|
||||||
|
|
||||||
|
(define-public ruby-cucumber-messages
|
||||||
|
(package
|
||||||
|
(name "ruby-cucumber-messages")
|
||||||
|
(version "12.2.0")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/cucumber/messages-ruby.git")
|
||||||
|
(commit "12cd07eac87bce7843fd1bb0bf64bc4da09f097c")))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"16wwqfpsq7crvxc3q08lphgyh12cl2d83p1c79p312q4jmy9cn5a"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases (modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'patch-protobuf.rb
|
||||||
|
(lambda _
|
||||||
|
(substitute* "rake/protobuf.rb"
|
||||||
|
(("load 'protobuf/tasks/compile.rake'")
|
||||||
|
"require 'protobuf/tasks'"))
|
||||||
|
#t))
|
||||||
|
(add-before 'build 'compile
|
||||||
|
(lambda _
|
||||||
|
(substitute* "Makefile"
|
||||||
|
(("bundle exec ") "")
|
||||||
|
(("include default.mk.*" all)
|
||||||
|
(string-append "#" all)))
|
||||||
|
(invoke "make")))
|
||||||
|
(replace 'check
|
||||||
|
(lambda _
|
||||||
|
(invoke "rspec"))))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ruby-protobuf" ,ruby-protobuf-cucumber)))
|
||||||
|
(native-inputs
|
||||||
|
`(("ruby-rspec" ,ruby-rspec)))
|
||||||
|
(home-page "https://github.com/cucumber/messages-ruby")
|
||||||
|
(synopsis "Cucumber Messages for Ruby (Protocol Buffers)")
|
||||||
|
(description "Cucumber Messages for Ruby is a library which allows
|
||||||
|
serialization and deserialization of the protocol buffer messages used in
|
||||||
|
Cucumber.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-gherkin
|
(define-public ruby-gherkin
|
||||||
(package
|
(package
|
||||||
(name "ruby-gherkin")
|
(name "ruby-gherkin")
|
||||||
|
|
Loading…
Reference in a new issue