me
/
guix
Archived
1
0
Fork 0

gnu: Add ruby-prawn-table.

* gnu/packages/ruby.scm (ruby-prawn-table): New variable.
master
Julien Lepiller 2018-08-26 16:09:04 +02:00
parent 7ad8dd086c
commit 197ca8ecd2
No known key found for this signature in database
GPG Key ID: 43111F4520086A0C
1 changed files with 19 additions and 0 deletions

View File

@ -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+)))