gnu: Add ruby-net-scp.

* gnu/packages/ruby.scm (ruby-net-scp): New variable.
This commit is contained in:
Danny Milosavljevic 2018-07-24 23:13:50 +02:00
parent 714b49f68d
commit d38755cb91
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -1849,6 +1849,32 @@ (define-public ruby-net-ssh
(home-page "https://github.com/net-ssh/net-ssh")
(license license:expat)))
(define-public ruby-net-scp
(package
(name "ruby-net-scp")
;; The 1.2.1 release would be incompatible with ruby-net-ssh >= 4.
(version "1.2.2.rc2")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/net-ssh/net-scp/archive/v"
version ".tar.gz"))
(sha256
(base32
"0xyf17mhgvyz54xjj9ria4wnq3x62bhmkfgzqv8jwiip2bplv1nk"))))
(build-system ruby-build-system)
(native-inputs
`(("bundler" ,bundler)
("ruby-test-unit" ,ruby-test-unit)
("ruby-mocha" ,ruby-mocha)))
(propagated-inputs
`(("ruby-net-ssh" ,ruby-net-ssh)))
(synopsis "Pure-Ruby SCP client library")
(description "@code{Net::SCP} is a pure-Ruby implementation of the SCP
client protocol.")
(home-page "https://github.com/net-ssh/net-scp")
(license license:expat)))
(define-public ruby-minitest
(package
(name "ruby-minitest")