diff options
author | Julien Lepiller <julien@lepiller.eu> | 2018-08-26 16:09:04 +0200 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2018-09-01 23:08:38 +0200 |
commit | 197ca8ecd20e52bc5993dbc2f223274fcdb85e36 (patch) | |
tree | 77856c5a9bebcac6421f03b6c28f3b229e6f3295 | |
parent | 7ad8dd086c982e7cf971385d7fadd2a0d1feb209 (diff) | |
download | patches-197ca8ecd20e52bc5993dbc2f223274fcdb85e36.tar patches-197ca8ecd20e52bc5993dbc2f223274fcdb85e36.tar.gz |
gnu: Add ruby-prawn-table.
* gnu/packages/ruby.scm (ruby-prawn-table): New variable.
-rw-r--r-- | gnu/packages/ruby.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index b1da911d9d..dcc79732a5 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -5592,3 +5592,22 @@ definitions.") (synopsis "PDF generation for Ruby") (description "Prawn is a pure Ruby PDF generation library.") (license license:gpl3+))) + +(define-public ruby-prawn-table + (package + (name "ruby-prawn-table") + (version "0.2.2") + (source (origin + (method url-fetch) + (uri (rubygems-uri "prawn-table" version)) + (sha256 + (base32 + "1nxd6qmxqwl850icp18wjh5k0s3amxcajdrkjyzpfgq0kvilcv9k")))) + (build-system ruby-build-system) + (arguments `(#:tests? #f)); No rakefile + (propagated-inputs + `(("ruby-prawn" ,ruby-prawn))) + (home-page "https://github.com/prawnpdf/prawn-table") + (synopsis "Tables support for Prawn") + (description "This gem provides tables support for Prawn.") + (license license:gpl3+))) |