mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
gnu: Add ruby-net-sftp.
* gnu/packages/ruby.scm (ruby-net-sftp): New variable.
This commit is contained in:
parent
603a833043
commit
1cce580311
1 changed files with 21 additions and 0 deletions
|
@ -5584,6 +5584,27 @@ (define-public ruby-net-scp
|
||||||
(home-page "https://github.com/net-ssh/net-scp")
|
(home-page "https://github.com/net-ssh/net-scp")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-net-sftp
|
||||||
|
(package
|
||||||
|
(name "ruby-net-sftp")
|
||||||
|
(version "4.0.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "net-sftp" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0r33aa2d61hv1psm0l0mm6ik3ycsnq8symv7h84kpyf2b7493fv5"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(propagated-inputs (list ruby-net-ssh))
|
||||||
|
(synopsis "Pure Ruby implementation of the SFTP client protocol")
|
||||||
|
(description
|
||||||
|
"@code{Net::SFTP} is a pure Ruby implementation of the SFTP
|
||||||
|
protocol (specifically, versions 1 through 6 of the SFTP protocol). Note that
|
||||||
|
this is the “Secure File Transfer Protocol”, typically run over an SSH
|
||||||
|
connection, and has nothing to do with the FTP protocol.")
|
||||||
|
(home-page "https://github.com/net-ssh/net-sftp")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-minima
|
(define-public ruby-minima
|
||||||
(package
|
(package
|
||||||
(name "ruby-minima")
|
(name "ruby-minima")
|
||||||
|
|
Loading…
Reference in a new issue