mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
gnu: Add ruby-text-hyphen.
* gnu/packages/ruby.scm (ruby-text-hyphen): New variable.
This commit is contained in:
parent
db9f951b83
commit
f421785bd7
1 changed files with 25 additions and 0 deletions
|
@ -1645,6 +1645,31 @@ (define-public ruby-chunky-png
|
|||
(home-page "https://github.com/wvanbergen/chunky_png/wiki")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public ruby-text-hyphen
|
||||
(package
|
||||
(name "ruby-text-hyphen")
|
||||
(version "1.4.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "text-hyphen" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1gj4awvs9ryf960m0iawg43jyjmfwcqgfwrbcfp890a57b9ag7q1"))))
|
||||
(build-system ruby-build-system)
|
||||
(native-inputs
|
||||
`(("ruby-hoe" ,ruby-hoe)))
|
||||
(synopsis "Ruby library to hyphenate words in various languages")
|
||||
(description "Text::Hyphen is a Ruby library to hyphenate words in various
|
||||
languages using Ruby-fied versions of TeX hyphenation patterns. It will
|
||||
properly hyphenate various words according to the rules of the language the
|
||||
word is written in. The algorithm is based on that of the TeX typesetting
|
||||
system by Donald E. Knuth.")
|
||||
(home-page "https://github.com/halostatue/text-hyphen")
|
||||
;; The whole is licensed under the Expat license, but parts use various
|
||||
;; versions of the LaTeX Project Public License.
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-ast
|
||||
(package
|
||||
(name "ruby-ast")
|
||||
|
|
Loading…
Reference in a new issue