me
/
guix
Archived
1
0
Fork 0

gnu: Add ruby-prawn-svg.

* gnu/packages/ruby.scm (ruby-prawn-svg): New variable.
master
Maxim Cournoyer 2020-07-13 10:49:23 -04:00
parent 2d877f6ef3
commit 95692655a1
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 36 additions and 0 deletions

View File

@ -1212,6 +1212,42 @@ Style Sheets (CSS) rule sets in Ruby.")
(home-page "https://github.com/premailer/css_parser")
(license license:expat)))
(define-public ruby-prawn-svg
(package
(name "ruby-prawn-svg")
(version "0.30.0")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "prawn-svg" version))
(sha256
(base32
"0df3l49cy3xpwi0b73hmi2ykbjg9kjwrvhk0k3z7qhh5ghmmrn77"))))
(build-system ruby-build-system)
(arguments
`(#:phases (modify-phases %standard-phases
(add-after 'unpack 'do-not-use-bundler
(lambda _
(substitute* "spec/spec_helper.rb"
((".*[Bb]undler.*") ""))
#t))
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "rspec" "-Ilib" "-rprawn-svg"))
#t)))))
(native-inputs
`(("ruby-rspec" ,ruby-rspec)))
(propagated-inputs
`(("ruby-css-parser" ,ruby-css-parser)
("ruby-prawn" ,ruby-prawn)))
(synopsis "SVG renderer for the Prawn PDF library")
(description "This library allows rendering Scalable Vector Graphics (SVG)
graphics directly into a Portable Document Format (PDF) document using the
Prawn module.")
(home-page "https://github.com/mogest/prawn-svg")
(license license:expat)))
(define-public ruby-ast
(package
(name "ruby-ast")