summaryrefslogtreecommitdiff
path: root/gnu/packages/ssh.scm
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2016-07-27 19:45:02 +0200
committerLudovic Courtès <ludo@gnu.org>2016-07-29 00:04:39 +0200
commitc777570b5783b76b3c846e324048cbfbcac39166 (patch)
treebad899314612e7eac77afdc522ba00bdccc61bb8 /gnu/packages/ssh.scm
parentcfbb3b0d006f48729c27ae97f11c9372351c9e9c (diff)
gnu: Add sshpass.
* gnu/packages/ssh.scm (sshpass): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/ssh.scm')
-rw-r--r--gnu/packages/ssh.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index 61a6a5b9d9c..a669ccfc9b7 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -4,6 +4,7 @@
4;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org> 4;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
5;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il> 5;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
6;;; Copyright © 2016 Leo Famulari <leo@famulari.name> 6;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
7;;; Copyright © 2016 Nicolas Goaziou <mail@nicolasgoaziou.fr>
7;;; 8;;;
8;;; This file is part of GNU Guix. 9;;; This file is part of GNU Guix.
9;;; 10;;;
@@ -492,3 +493,23 @@ providing shell access to the server system from the client. It provides
492both the server daemon and the client application, as well as tools for 493both the server daemon and the client application, as well as tools for
493manipulating key files.") 494manipulating key files.")
494 (license license:gpl2+))) 495 (license license:gpl2+)))
496
497(define-public sshpass
498 (package
499 (name "sshpass")
500 (version "1.06")
501 (synopsis "Non-interactive password authentication with SSH")
502 (home-page "https://sourceforge.net/projects/sshpass/")
503 (source
504 (origin
505 (method url-fetch)
506 (uri (string-append "mirror://sourceforge/sshpass/sshpass/"
507 version "/sshpass-" version ".tar.gz"))
508 (sha256
509 (base32
510 "0q7fblaczb7kwbsz0gdy9267z0sllzgmf0c7z5c9mf88wv74ycn6"))))
511 (build-system gnu-build-system)
512 (description "sshpass is a tool for non-interactivly performing password
513authentication with SSH's so-called @dfn{interactive keyboard password
514authentication}.")
515 (license license:gpl2+)))