gnu: Add ruby-prawn-manual-builder.
Required for the ruby-prawn-table tests. * gnu/packages/ruby.scm (ruby-prawn-manual-builder): New variable.
This commit is contained in:
parent
c41fba01d3
commit
16f423cbd9
|
@ -3101,6 +3101,40 @@ for select languages.")
|
||||||
(home-page "https://github.com/whitequark/parser")
|
(home-page "https://github.com/whitequark/parser")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-prawn-manual-builder
|
||||||
|
(package
|
||||||
|
(name "ruby-prawn-manual-builder")
|
||||||
|
(version "0.3.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "prawn-manual_builder" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0wbjnkqp55p5wmz85ldypcray223glckd209hmdxhnzk8s5pb3za"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments
|
||||||
|
'(;; No included tests
|
||||||
|
#:tests? #f
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'extract-gemspec 'patch-gemspec
|
||||||
|
(lambda _
|
||||||
|
(substitute* ".gemspec"
|
||||||
|
;; Loosen the requirement for pdf-inspector
|
||||||
|
(("~> 1\\.0\\.7") ">= 0")))))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ruby-coderay" ,ruby-coderay)))
|
||||||
|
(synopsis "Tool for writing manuals for Prawn and Prawn accessories")
|
||||||
|
(description
|
||||||
|
"This package provides a tool for writing manuals for Prawn and Prawn
|
||||||
|
accessories")
|
||||||
|
(home-page "https://github.com/prawnpdf/prawn-manual_builder")
|
||||||
|
(license (list
|
||||||
|
;; GPLv2 or GPLv3 or custom license described in LICENSE file
|
||||||
|
license:gpl2
|
||||||
|
license:gpl3))))
|
||||||
|
|
||||||
(define-public ruby-progress_bar
|
(define-public ruby-progress_bar
|
||||||
(package
|
(package
|
||||||
(name "ruby-progress_bar")
|
(name "ruby-progress_bar")
|
||||||
|
|
Loading…
Reference in New Issue