mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add ruby-io-console.
* gnu/packages/ruby.scm (ruby-io-console): New variable.
This commit is contained in:
parent
c665ec7a23
commit
c784aefb46
1 changed files with 27 additions and 0 deletions
|
@ -513,6 +513,33 @@ (define-public ruby-i18n
|
|||
(home-page "https://github.com/ruby-i18n/i18n")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-io-console
|
||||
(package
|
||||
(name "ruby-io-console")
|
||||
(version "0.6.0")
|
||||
(source (origin
|
||||
(method git-fetch) ;for tests
|
||||
(uri (git-reference
|
||||
(url "https://github.com/ruby/io-console/")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0gwxrp29b6awkid1sf85sbh529mnq6hb86m8c2443cm6nc4vr8qb"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
(list #:phases #~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'delete-rakelib-files
|
||||
(lambda _
|
||||
;; These depend on git and other extraneous
|
||||
;; dependencies, and are loaded by rake.
|
||||
(delete-file-recursively "rakelib"))))))
|
||||
(native-inputs (list ruby-rake-compiler))
|
||||
(synopsis "Console capabilities library for IO instances")
|
||||
(description "IO.console adds console capabilities to Ruby IO instances.")
|
||||
(home-page "https://github.com/ruby/io-console")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public ruby-iruby
|
||||
(package
|
||||
(name "ruby-iruby")
|
||||
|
|
Loading…
Reference in a new issue