summaryrefslogtreecommitdiff
path: root/gnu/packages/ruby.scm
diff options
context:
space:
mode:
authorHartmut Goebel <h.goebel@crazy-compilers.com>2023-07-23 21:49:51 +0200
committerHartmut Goebel <h.goebel@crazy-compilers.com>2024-02-24 16:42:42 +0100
commit6c58105e7954ab0c9bd6e234185caa26c3153805 (patch)
tree20c6adb9dd06ecede89dfe2c96cff93d6f439dfa /gnu/packages/ruby.scm
parentbe897d474d8a299f1da2fa2e5f6ab88d2fffeaaf (diff)
gnu: Add ruby-grpc.
* gnu/packages/ruby.scm (ruby-grpc): New variable.
Diffstat (limited to 'gnu/packages/ruby.scm')
-rw-r--r--gnu/packages/ruby.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 31cefce0b80..884f60e8ecd 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -17783,6 +17783,29 @@ generation functionality.")
17783 (home-page "https://github.com/googleapis/common-protos-ruby") 17783 (home-page "https://github.com/googleapis/common-protos-ruby")
17784 (license license:asl2.0))) 17784 (license license:asl2.0)))
17785 17785
17786(define-public ruby-grpc
17787 (package
17788 (name "ruby-grpc")
17789 (version "1.62.0")
17790 (source (origin
17791 (method url-fetch)
17792 (uri (rubygems-uri "grpc" version))
17793 (sha256
17794 (base32
17795 "03z8yq0z228g6xxxq6s2mmslpv6psrdmi30dpmhysr4px16d897n"))))
17796 (build-system ruby-build-system)
17797 (arguments
17798 `(#:tests? #f)) ;; has no tests
17799 ;; TODO remove third-party sources (zlib, upb, utf8-range, re2, c-ares,
17800 ;; boringssl-with-bazel, address_sorting, abseil-cpp), see Makefile
17801 (propagated-inputs (list ruby-google-protobuf
17802 ruby-googleapis-common-protos-types))
17803 (synopsis "GRPC system in Ruby")
17804 (description "GRPC is a high performance, open-source universal RPC
17805framework. This package provides a ruby interface for it.")
17806 (home-page "https://github.com/grpc/grpc/tree/master/src/ruby")
17807 (license license:asl2.0)))
17808
17786;;; 17809;;;
17787;;; Avoid adding new packages to the end of this file. To reduce the chances 17810;;; Avoid adding new packages to the end of this file. To reduce the chances
17788;;; of a merge conflict, place them above by existing packages with similar 17811;;; of a merge conflict, place them above by existing packages with similar