mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add ruby-fog-xml.
* gnu/packages/ruby.scm (ruby-fog-xml): New variable.
This commit is contained in:
parent
01035b2140
commit
ec9c9bd6e6
1 changed files with 35 additions and 0 deletions
|
@ -9749,6 +9749,41 @@ (define-public ruby-fog-json
|
||||||
(home-page "https://github.com/fog/fog-json")
|
(home-page "https://github.com/fog/fog-json")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-fog-xml
|
||||||
|
(package
|
||||||
|
(name "ruby-fog-xml")
|
||||||
|
(version "0.1.4")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch) ; for tests
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/fog/fog-xml")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0d0n201qzcjxis5wb26bi3s7yfhlmqkwsl6lb9w4szq3b8l1xbwn"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
;; Run tests via bundler so rake picks up the minitest gem from
|
||||||
|
;; native-inputs, not the one installed otherwise. This is required
|
||||||
|
;; since turn@0.9.7 needs minitest@4 and can not be upgraded to
|
||||||
|
;; minitest@5.
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(invoke "bundle" "exec" "rake")))))))
|
||||||
|
(native-inputs (list ruby-minitest-4 ruby-turn ruby-pry ruby-coveralls))
|
||||||
|
(propagated-inputs (list ruby-fog-core ruby-nokogiri))
|
||||||
|
(synopsis "XML parsing tools used by @code{fog} providers")
|
||||||
|
(description "This package containse the XML parsing tools shared between
|
||||||
|
a number of providers in the @code{fog} gem. @code{fog} is a Ruby cloud
|
||||||
|
services library.")
|
||||||
|
(home-page "https://github.com/fog/fog-xml")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-pry-byebug
|
(define-public ruby-pry-byebug
|
||||||
(package
|
(package
|
||||||
(name "ruby-pry-byebug")
|
(name "ruby-pry-byebug")
|
||||||
|
|
Loading…
Reference in a new issue