diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-12-24 15:45:12 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-12-24 16:12:18 +0100 |
commit | 0c9f73cd23f3cd5af2ea9076048bd7ea557b69c3 (patch) | |
tree | 5c60ee183f639591f97d96248962b98e30535590 /gnu/packages | |
parent | 53fd476fa5a5e9c5688c0ca21a7b7ebb62b8d9cb (diff) | |
download | patches-0c9f73cd23f3cd5af2ea9076048bd7ea557b69c3.tar patches-0c9f73cd23f3cd5af2ea9076048bd7ea557b69c3.tar.gz |
gnu: ruby-json-pure: Fix build failure.
* gnu/packages/ruby.scm (ruby-json-pure)[native-inputs]: Add ragel.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/ruby.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 28636fab9e..827295cb1c 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -2631,8 +2631,9 @@ a native C extension.") (zero? (system* "rake" "gemspec"))))))) (native-inputs `(("bundler" ,bundler) - ("ruby-test-unit" ,ruby-test-unit) - ("ruby-simplecov" ,ruby-simplecov))) + ("ragel" ,ragel) + ("ruby-simplecov" ,ruby-simplecov) + ("ruby-test-unit" ,ruby-test-unit))) (synopsis "JSON implementation in pure Ruby") (description "This package provides a JSON implementation written in pure Ruby.") |