mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 03:29:40 -05:00
gnu: Add ruby-org-ruby.
* gnu/packages/ruby.scm (ruby-org-ruby): New variable.
This commit is contained in:
parent
f90c25c1c8
commit
beb3483553
1 changed files with 23 additions and 0 deletions
|
@ -4489,3 +4489,26 @@ (define-public ruby-rubypants
|
||||||
smart typographic punctuation HTML entities.")
|
smart typographic punctuation HTML entities.")
|
||||||
(home-page "https://github.com/jmcnevin/rubypants")
|
(home-page "https://github.com/jmcnevin/rubypants")
|
||||||
(license license:bsd-2)))
|
(license license:bsd-2)))
|
||||||
|
|
||||||
|
(define-public ruby-org-ruby
|
||||||
|
(package
|
||||||
|
(name "ruby-org-ruby")
|
||||||
|
(version "0.9.12")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "org-ruby" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0x69s7aysfiwlcpd9hkvksfyld34d8kxr62adb59vjvh8hxfrjwk"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:tests? #f)) ; no rakefile
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ruby-rubypants" ,ruby-rubypants)))
|
||||||
|
(synopsis "Org-mode parser written in Ruby")
|
||||||
|
(description
|
||||||
|
"Org-ruby is an org-mode parser written in Ruby. The most significant
|
||||||
|
thing this library does today is convert org-mode files to HTML or Textile or
|
||||||
|
Markdown.")
|
||||||
|
(home-page "https://github.com/wallyqs/org-ruby")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in a new issue