mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add ruby-net-ssh.
* gnu/packages/ruby.scm (ruby-net-ssh): New variable.
This commit is contained in:
parent
4f2a52aeb5
commit
2c84ba7e11
1 changed files with 21 additions and 0 deletions
|
@ -1311,6 +1311,27 @@ (define-public ruby-mocha
|
|||
(home-page "http://gofreerange.com/mocha/docs")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-net-ssh
|
||||
(package
|
||||
(name "ruby-net-ssh")
|
||||
(version "3.0.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "net-ssh" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1dzqkgwi9xm6mbfk1rkk17rzmz8m5xakqi21w1b97ybng6kkw0hf"))))
|
||||
(build-system ruby-build-system)
|
||||
(native-inputs
|
||||
`(("ruby-mocha" ,ruby-mocha)
|
||||
("ruby-test-unit" ,ruby-test-unit)))
|
||||
(synopsis "Ruby implementation of the SSH2 client protocol")
|
||||
(description "@code{Net::SSH} is a pure-Ruby implementation of the SSH2
|
||||
client protocol. It allows you to write programs that invoke and interact
|
||||
with processes on remote servers, via SSH2.")
|
||||
(home-page "https://github.com/net-ssh/net-ssh")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-minitest
|
||||
(package
|
||||
(name "ruby-minitest")
|
||||
|
|
Loading…
Reference in a new issue