mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-16 16:08:04 -05:00
gnu: Add ruby-msgpack.
* gnu/packages/ruby.scm (ruby-msgpack): New variable.
This commit is contained in:
parent
97096c268c
commit
c0a5b181a7
1 changed files with 27 additions and 0 deletions
|
@ -4153,6 +4153,33 @@ (define-public ruby-mkmf-lite
|
||||||
(home-page "https://github.com/djberg96/mkmf-lite")
|
(home-page "https://github.com/djberg96/mkmf-lite")
|
||||||
(license license:asl2.0)))
|
(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
|
(define-public ruby-mspec
|
||||||
(package
|
(package
|
||||||
(name "ruby-mspec")
|
(name "ruby-mspec")
|
||||||
|
|
Loading…
Reference in a new issue