guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

27/41: gnu: Add ruby-prawn-table.


From: julien lepiller
Subject: 27/41: gnu: Add ruby-prawn-table.
Date: Sat, 1 Sep 2018 17:10:18 -0400 (EDT)

roptat pushed a commit to branch master
in repository guix.

commit 197ca8ecd20e52bc5993dbc2f223274fcdb85e36
Author: Julien Lepiller <address@hidden>
Date:   Sun Aug 26 16:09:04 2018 +0200

    gnu: Add ruby-prawn-table.
    
    * gnu/packages/ruby.scm (ruby-prawn-table): New variable.
---
 gnu/packages/ruby.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index b1da911..dcc7973 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+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]