mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add ruby-gem-hadar.
* gnu/packages/ruby.scm (ruby-gem-hadar): New variable.
This commit is contained in:
parent
1db6e09fa9
commit
bc8277e458
1 changed files with 33 additions and 0 deletions
|
@ -1911,6 +1911,39 @@ (define-public ruby-tins
|
|||
(home-page "https://github.com/flori/tins")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-gem-hadar
|
||||
(package
|
||||
(name "ruby-gem-hadar")
|
||||
(version "1.3.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "gem_hadar" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1j8qri4m9wf8nbfv0kakrgsv2x8vg10914xgm6f69nw8zi3i39ws"))))
|
||||
(build-system ruby-build-system)
|
||||
;; This gem needs itself at development time. We disable rebuilding of the
|
||||
;; gemspec to avoid this loop.
|
||||
(arguments
|
||||
`(#:tests? #f ; there are no tests
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'build
|
||||
(lambda _
|
||||
(zero? (system* "gem" "build" "gem_hadar.gemspec")))))))
|
||||
(propagated-inputs
|
||||
`(("git" ,git)
|
||||
("ruby-tins" ,ruby-tins)
|
||||
("ruby-sdoc" ,ruby-sdoc)))
|
||||
(native-inputs
|
||||
`(("bundler" ,bundler)))
|
||||
(synopsis "Library for the development of Ruby gems")
|
||||
(description
|
||||
"This library contains some useful functionality to support the
|
||||
development of Ruby gems.")
|
||||
(home-page "https://github.com/flori/gem_hadar")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-json
|
||||
(package
|
||||
(name "ruby-json")
|
||||
|
|
Loading…
Reference in a new issue