mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 14:01:29 -05:00
gnu: Add ruby-rexml.
* gnu/packages/ruby.scm (ruby-rexml): New variable.
This commit is contained in:
parent
5c4c28f8f5
commit
e098bdae3a
1 changed files with 22 additions and 0 deletions
|
@ -6473,6 +6473,28 @@ (define-public ruby-rubocop-ast
|
||||||
(home-page "https://rubocop.org/")
|
(home-page "https://rubocop.org/")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-rexml
|
||||||
|
(package
|
||||||
|
(name "ruby-rexml")
|
||||||
|
(version "3.2.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch) ;no tests in distributed gem
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/ruby/rexml.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0rhjjbkaq2f2cs8hyr2i4yjqpcyl8m0wmr2cypa401m3fvz4221i"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(synopsis "XML toolkit for Ruby")
|
||||||
|
(description "Inspired by Electric XML library for Java, REXML aims to be
|
||||||
|
easy-to-use API, small and fast. It supports both tree and stream document
|
||||||
|
parsing.")
|
||||||
|
(home-page "https://github.com/ruby/rexml")
|
||||||
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public ruby-rubocop
|
(define-public ruby-rubocop
|
||||||
(package
|
(package
|
||||||
(name "ruby-rubocop")
|
(name "ruby-rubocop")
|
||||||
|
|
Loading…
Reference in a new issue