diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2018-02-05 11:40:40 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-03-18 17:38:02 +0000 |
commit | 474fad2991fd574f808201cc78280ab97991efff (patch) | |
tree | db30c716d39cae502ca16b3570c0bb42f6bb8541 /gnu/packages | |
parent | 5d865504f238b5f629c5965cd2012aade826c5d5 (diff) | |
download | guix-474fad2991fd574f808201cc78280ab97991efff.tar guix-474fad2991fd574f808201cc78280ab97991efff.tar.gz |
gnu: Add ruby-multi-json.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/ruby.scm | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index c1b7748c15..12bfba69bd 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -5047,3 +5047,42 @@ in standard Ruby syntax.") "The fastest JSON parser and object serializer. ") (home-page "http://www.ohler.com/oj") (license license:expat))) + +(define-public ruby-multi-json + (package + (name "ruby-multi-json") + (version "1.11.2") + (source + (origin + (method url-fetch) + ;; Tests are not distributed at rubygems.org so download from GitHub + ;; instead. + (uri (string-append "https://github.com/intridea/multi_json/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "04vkfz88vj6ab3097n0xgm0335j753ik03zkq44grq6m36m94vk5")))) + (build-system ruby-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'remove-signing-key-reference + (lambda _ + (substitute* "multi_json.gemspec" + ((".*spec.signing_key.*") "")) + #t))))) + (native-inputs + `(("bundler" ,bundler) + ("ruby-rspec" ,ruby-rspec) + ("ruby-yard" ,ruby-yard) + ("ruby-json-pure" ,ruby-json-pure) + ("ruby-oj" ,ruby-oj) + ("ruby-yajl-ruby" ,ruby-yajl-ruby))) + (synopsis + "A common interface to multiple JSON libraries, including Oj, Yajl, the JSON gem (with C-extensions), the pure-Ruby JSON gem, NSJSONSerialization, gson.rb, JrJackson, and OkJson.") + (description + "A common interface to multiple JSON libraries, including Oj, Yajl, the JSON gem (with C-extensions), the pure-Ruby JSON gem, NSJSONSerialization, gson.rb, JrJackson, and OkJson.") + (home-page + "http://github.com/intridea/multi_json") + (license license:expat))) |