[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
16/28: gnu: Add ruby-google-protobuf.
From: |
guix-commits |
Subject: |
16/28: gnu: Add ruby-google-protobuf. |
Date: |
Sat, 24 Feb 2024 10:51:11 -0500 (EST) |
htgoebel pushed a commit to branch master
in repository guix.
commit 8663372dac1589993731ea758f5ceb4cfd82a56a
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Sun Jul 23 18:38:05 2023 +0200
gnu: Add ruby-google-protobuf.
* gnu/packages/ruby.scm (ruby-google-protobuf): New variable.
---
gnu/packages/ruby.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index c30a47c732..a60c9bf306 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -17737,6 +17737,33 @@ has not yet been packaged for Guix.")
(license license:bsd-2)
(properties `((upstream-name . "anystyle-cli")))))
+(define-public ruby-google-protobuf
+ (package
+ (name "ruby-google-protobuf")
+ (version "3.25.3")
+ (source (origin
+ (method url-fetch)
+ (uri (rubygems-uri "google-protobuf" version))
+ (sha256
+ (base32
+ "1mnxzcq8kmyfb9bkzqnp019d1hx1vprip3yzdkkha6b3qz5rgg9r"))))
+ (build-system ruby-build-system)
+ (arguments
+ `(#:tests? #f)) ;; has no tests
+ (native-inputs (list ruby-rake))
+ (synopsis "Protocol Buffers are Google's data interchange format")
+ (description "This library contains the Ruby extension that implements
+Protocol Buffers functionality in Ruby.
+
+The Ruby extension makes use of generated Ruby code that defines message and
+enum types in a Ruby DSL. You may write definitions in this DSL directly, but
+we recommend using protoc's Ruby generation support with @code{.proto} files.
+The build process in this directory only installs the extension; you need to
+install @code{protoc} (in package ruby-grpc-tools) as well to have Ruby code
+generation functionality.")
+ (home-page "https://protobuf.dev")
+ (license license:bsd-3)))
+
;;;
;;; 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
- 03/28: gnu: Add ruby-ipaddr., (continued)
- 03/28: gnu: Add ruby-ipaddr., guix-commits, 2024/02/24
- 04/28: gnu: Add ruby-net-ftp., guix-commits, 2024/02/24
- 05/28: gnu: Add ruby-fake-ftp., guix-commits, 2024/02/24
- 07/28: gnu: Add ruby-net-telnet., guix-commits, 2024/02/24
- 09/28: gnu: Add ruby-stringio., guix-commits, 2024/02/24
- 13/28: gnu: Add ruby-specinfra., guix-commits, 2024/02/24
- 14/28: gnu: Add ruby-serverspec., guix-commits, 2024/02/24
- 15/28: gnu: Add ruby-time., guix-commits, 2024/02/24
- 20/28: gnu: Add ruby-vagrant-spec., guix-commits, 2024/02/24
- 21/28: gnu: Add ruby-vagrant-spec-helper-basic., guix-commits, 2024/02/24
- 16/28: gnu: Add ruby-google-protobuf.,
guix-commits <=
- 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, 2024/02/24