From c777570b5783b76b3c846e324048cbfbcac39166 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 27 Jul 2016 19:45:02 +0200 Subject: gnu: Add sshpass. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/ssh.scm (sshpass): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/ssh.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 61a6a5b9d9..a669ccfc9b 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2014, 2015, 2016 Mark H Weaver ;;; Copyright © 2015, 2016 Efraim Flashner ;;; Copyright © 2016 Leo Famulari +;;; Copyright © 2016 Nicolas Goaziou ;;; ;;; This file is part of GNU Guix. ;;; @@ -492,3 +493,23 @@ (define-public lsh both the server daemon and the client application, as well as tools for manipulating key files.") (license license:gpl2+))) + +(define-public sshpass + (package + (name "sshpass") + (version "1.06") + (synopsis "Non-interactive password authentication with SSH") + (home-page "https://sourceforge.net/projects/sshpass/") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/sshpass/sshpass/" + version "/sshpass-" version ".tar.gz")) + (sha256 + (base32 + "0q7fblaczb7kwbsz0gdy9267z0sllzgmf0c7z5c9mf88wv74ycn6")))) + (build-system gnu-build-system) + (description "sshpass is a tool for non-interactivly performing password +authentication with SSH's so-called @dfn{interactive keyboard password +authentication}.") + (license license:gpl2+))) -- cgit v1.2.3