mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
gnu: Add ruby-reline.
* gnu/packages/ruby.scm (ruby-reline): New variable.
This commit is contained in:
parent
c784aefb46
commit
2081bc48a3
1 changed files with 21 additions and 0 deletions
|
@ -4533,6 +4533,27 @@ (define-public ruby-redcarpet
|
|||
(home-page "https://github.com/vmg/redcarpet")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-reline
|
||||
(package
|
||||
(name "ruby-reline")
|
||||
(version "0.3.3")
|
||||
(source (origin
|
||||
(method git-fetch) ;for tests
|
||||
(uri (git-reference
|
||||
(url "https://github.com/ruby/reline")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1papa4f4prjml9qk6yydi4k5a4zgbzmxmbhd8fz9kfg1i34s35cw"))))
|
||||
(build-system ruby-build-system)
|
||||
(propagated-inputs (list ruby-io-console))
|
||||
(synopsis "GNU Readline or Editline implementation in Ruby")
|
||||
(description "Reline is a pure Ruby alternative GNU Readline or Editline
|
||||
implementation.")
|
||||
(home-page "https://github.com/ruby/reline")
|
||||
(license (list license:bsd-2 license:ruby)))) ;dual license
|
||||
|
||||
(define-public ruby-rerun
|
||||
(package
|
||||
(name "ruby-rerun")
|
||||
|
|
Loading…
Reference in a new issue