[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
18/28: gnu: Add ruby-grpc.
From: |
guix-commits |
Subject: |
18/28: gnu: Add ruby-grpc. |
Date: |
Sat, 24 Feb 2024 10:51:11 -0500 (EST) |
htgoebel pushed a commit to branch master
in repository guix.
commit 6c58105e7954ab0c9bd6e234185caa26c3153805
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Sun Jul 23 21:49:51 2023 +0200
gnu: Add ruby-grpc.
* gnu/packages/ruby.scm (ruby-grpc): New variable.
---
gnu/packages/ruby.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 31cefce0b8..884f60e8ec 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -17783,6 +17783,29 @@ generation functionality.")
(home-page "https://github.com/googleapis/common-protos-ruby")
(license license:asl2.0)))
+(define-public ruby-grpc
+ (package
+ (name "ruby-grpc")
+ (version "1.62.0")
+ (source (origin
+ (method url-fetch)
+ (uri (rubygems-uri "grpc" version))
+ (sha256
+ (base32
+ "03z8yq0z228g6xxxq6s2mmslpv6psrdmi30dpmhysr4px16d897n"))))
+ (build-system ruby-build-system)
+ (arguments
+ `(#:tests? #f)) ;; has no tests
+ ;; TODO remove third-party sources (zlib, upb, utf8-range, re2, c-ares,
+ ;; boringssl-with-bazel, address_sorting, abseil-cpp), see Makefile
+ (propagated-inputs (list ruby-google-protobuf
+ ruby-googleapis-common-protos-types))
+ (synopsis "GRPC system in Ruby")
+ (description "GRPC is a high performance, open-source universal RPC
+framework. This package provides a ruby interface for it.")
+ (home-page "https://github.com/grpc/grpc/tree/master/src/ruby")
+ (license license:asl2.0)))
+
;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar
- 16/28: gnu: Add ruby-google-protobuf., (continued)
- 16/28: gnu: Add ruby-google-protobuf., guix-commits, 2024/02/24
- 06/28: gnu: Add ruby-net-sftp., guix-commits, 2024/02/24
- 11/28: gnu: Add ruby-rgl., guix-commits, 2024/02/24
- 12/28: gnu: Add ruby-sfl., guix-commits, 2024/02/24
- 08/28: gnu: Add ruby-pairing-heap., guix-commits, 2024/02/24
- 10/28: gnu: Add ruby-stream., guix-commits, 2024/02/24
- 19/28: gnu: Add ruby-vagrant-cloud., guix-commits, 2024/02/24
- 22/28: gnu: Add ruby-hashicorp-checkpoint., guix-commits, 2024/02/24
- 23/28: gnu: ruby-childprocess: Update to 4.1.0., guix-commits, 2024/02/24
- 17/28: gnu: Add ruby-googleapis-common-protos-types., guix-commits, 2024/02/24
- 18/28: gnu: Add ruby-grpc.,
guix-commits <=
- 25/28: gnu: Add ruby-fog-core., guix-commits, 2024/02/24
- 24/28: gnu: Add ruby-libvirt., guix-commits, 2024/02/24
- 27/28: gnu: Add ruby-fog-xml., guix-commits, 2024/02/24
- 26/28: gnu: Add ruby-fog-json., guix-commits, 2024/02/24
- 28/28: gnu: Add ruby-fog-libvirt., guix-commits, 2024/02/24