guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: Add ruby-net-scp.


From: Danny Milosavljevic
Subject: 01/02: gnu: Add ruby-net-scp.
Date: Thu, 26 Jul 2018 09:55:02 -0400 (EDT)

dannym pushed a commit to branch master
in repository guix.

commit d38755cb91952b574c1a72b7ea0ae8b52bc4f6e3
Author: Danny Milosavljevic <address@hidden>
Date:   Tue Jul 24 23:13:50 2018 +0200

    gnu: Add ruby-net-scp.
    
    * gnu/packages/ruby.scm (ruby-net-scp): New variable.
---
 gnu/packages/ruby.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 6b85fe6..aa4cae6 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -1849,6 +1849,32 @@ with processes on remote servers, via SSH2.")
     (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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]