gnu: Add ruby-prawn-svg.
* gnu/packages/ruby.scm (ruby-prawn-svg): New variable.
This commit is contained in:
parent
2d877f6ef3
commit
95692655a1
1 changed files with 36 additions and 0 deletions
|
@ -1212,6 +1212,42 @@ (define-public ruby-css-parser
|
|||
(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")
|
||||
|
|
Loading…
Reference in a new issue