diff options
author | Christopher Baines <mail@cbaines.net> | 2017-11-25 17:22:07 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2017-11-25 17:22:07 +0000 |
commit | 54df280cff8f8774a503703f505439bed0084aa4 (patch) | |
tree | 17a44f9992fd96e586564713b04ca806cea76341 | |
parent | 4aac8d059a2bec9f075ceea2a089ca029a71912c (diff) | |
download | guix-54df280cff8f8774a503703f505439bed0084aa4.tar guix-54df280cff8f8774a503703f505439bed0084aa4.tar.gz |
gnu: Add ruby-msgpack.
-rw-r--r-- | gnu/packages/serialization.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm index 03365ad3fa..4393107c68 100644 --- a/gnu/packages/serialization.scm +++ b/gnu/packages/serialization.scm @@ -31,6 +31,7 @@ #:use-module (guix utils) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) + #:use-module (guix build-system ruby) #:use-module (gnu packages) #:use-module (gnu packages autotools) #:use-module (gnu packages boost) @@ -237,6 +238,25 @@ that implements both the msgpack and msgpack-rpc specifications.") (inputs `(("lua" ,lua-5.2))))) +(define-public ruby-msgpack + (package + (name "ruby-msgpack") + (version "1.1.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "msgpack" version)) + (sha256 + (base32 + "0ck7w17d6b4jbb8inh1q57bghi9cjkiaxql1d3glmj1yavbpmlh7")))) + (build-system ruby-build-system) + (synopsis + "MessagePack is a binary-based efficient object serialization library. It enables to exchange structured objects between many languages like JSON. But unlike JSON, it is very fast and small.") + (description + "MessagePack is a binary-based efficient object serialization library. It enables to exchange structured objects between many languages like JSON. But unlike JSON, it is very fast and small.") + (home-page "http://msgpack.org/") + (license license:asl2.0))) + (define-public yaml-cpp (package (name "yaml-cpp") |