[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
118/229: gnu: Add ruby-msgpack.
From: |
guix-commits |
Subject: |
118/229: gnu: Add ruby-msgpack. |
Date: |
Tue, 28 Mar 2023 22:29:11 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit c0a5b181a76fada2fbfcc2078d20b6a8198cf84a
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Mon Jan 9 11:15:59 2023 -0500
gnu: Add ruby-msgpack.
* gnu/packages/ruby.scm (ruby-msgpack): 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 a2ca791068..a266dd27f3 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -4153,6 +4153,33 @@ to check for the presence of header files, constants,
and so on.")
(home-page "https://github.com/djberg96/mkmf-lite")
(license license:asl2.0)))
+(define-public ruby-msgpack
+ (package
+ (name "ruby-msgpack")
+ (version "1.6.1")
+ (source (origin
+ (method git-fetch) ;for tests
+ (uri (git-reference
+ (url "https://github.com/msgpack/msgpack-ruby")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "08wi853nv02clrdwx8s6dg9lmcyzq5fk84l4rb94pglps76rlvz7"))))
+ (build-system ruby-build-system)
+ (arguments (list #:test-target "spec"))
+ (native-inputs
+ (list ruby-rake-compiler
+ ruby-ruby-memcheck
+ ruby-rspec
+ ruby-yard))
+ (synopsis "Efficient object serialization library for Ruby")
+ (description "MessagePack is a binary-based efficient object serialization
+library. It enables to exchange structured objects between many languages
+like JSON. Unlike JSON, it is very fast and small.")
+ (home-page "https://msgpack.org/")
+ (license license:asl2.0)))
+
(define-public ruby-mspec
(package
(name "ruby-mspec")
- 102/229: gnu: ruby-pry-byebug: Avoid depending on ruby-chandler., (continued)
- 102/229: gnu: ruby-pry-byebug: Avoid depending on ruby-chandler., guix-commits, 2023/03/28
- 107/229: gnu: Add ruby-faraday-multipart., guix-commits, 2023/03/28
- 109/229: gnu: Add ruby-fileutils., guix-commits, 2023/03/28
- 111/229: gnu: ruby-bandwidth-iris: Fix indentation., guix-commits, 2023/03/28
- 112/229: gnu: ruby-bandwidth-iris: Update to 7.0.0., guix-commits, 2023/03/28
- 113/229: gnu: ruby-octokit: Enable tests., guix-commits, 2023/03/28
- 114/229: gnu: Add ruby-mapping., guix-commits, 2023/03/28
- 115/229: gnu: Add ruby-fiber-local., guix-commits, 2023/03/28
- 116/229: gnu: Add ruby-console., guix-commits, 2023/03/28
- 117/229: gnu: Add ruby-ruby-memcheck., guix-commits, 2023/03/28
- 118/229: gnu: Add ruby-msgpack.,
guix-commits <=
- 119/229: gnu: Add ruby-covered., guix-commits, 2023/03/28
- 120/229: gnu: Add ruby-samovar., guix-commits, 2023/03/28
- 122/229: gnu: Add ruby-reline., guix-commits, 2023/03/28
- 123/229: gnu: Add ruby-irb., guix-commits, 2023/03/28
- 124/229: gnu: Add ruby-debug., guix-commits, 2023/03/28
- 127/229: gnu: Add ruby-bake-test., guix-commits, 2023/03/28
- 131/229: gnu: Add ruby-localhost., guix-commits, 2023/03/28
- 132/229: gnu: bundler: Update to 2.4.10., guix-commits, 2023/03/28
- 133/229: gnu: ruby-puma: Update to 6.1.1 and enable test suite., guix-commits, 2023/03/28
- 74/229: gnu: Add ruby-minitest-stub-const., guix-commits, 2023/03/28