gnu: Add wl-clipboard.
[jackhill/guix/guix.git] / gnu / packages / ssh.scm
CommitLineData
2fbf053b 1;;; GNU Guix --- Functional package management for GNU
4e847986 2;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
06ed5982 3;;; Copyright © 2013, 2014 Andreas Enge <andreas@enge.fr>
45f2ffb4 4;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
1121a5c6 5;;; Copyright © 2015, 2016, 2018 Efraim Flashner <efraim@flashner.co.il>
78d80c5c 6;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
c777570b 7;;; Copyright © 2016 Nicolas Goaziou <mail@nicolasgoaziou.fr>
8caeb117 8;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
aa08ab38 9;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
c9a6a36f 10;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at>
227dbd84 11;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
4a78fd46 12;;; Copyright © 2017 Nils Gillmann <ng0@n0.is>
ae72b8f5 13;;; Copyright © 2018 Manuel Graf <graf@init.at>
2fbf053b
AE
14;;;
15;;; This file is part of GNU Guix.
16;;;
17;;; GNU Guix is free software; you can redistribute it and/or modify it
18;;; under the terms of the GNU General Public License as published by
19;;; the Free Software Foundation; either version 3 of the License, or (at
20;;; your option) any later version.
21;;;
22;;; GNU Guix is distributed in the hope that it will be useful, but
23;;; WITHOUT ANY WARRANTY; without even the implied warranty of
24;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25;;; GNU General Public License for more details.
26;;;
27;;; You should have received a copy of the GNU General Public License
28;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
29
30(define-module (gnu packages ssh)
2102ae2e
DC
31 #:use-module (gnu packages)
32 #:use-module (gnu packages autotools)
33 #:use-module (gnu packages base)
34 #:autoload (gnu packages boost) (boost)
2fbf053b 35 #:use-module (gnu packages compression)
c9a6a36f 36 #:use-module (gnu packages crypto)
2102ae2e 37 #:use-module (gnu packages elf)
2fbf053b 38 #:use-module (gnu packages gnupg)
2102ae2e 39 #:use-module (gnu packages gperf)
fe0b8a78 40 #:use-module (gnu packages groff)
49d294e5 41 #:use-module (gnu packages guile)
2102ae2e 42 #:use-module (gnu packages linux)
c9a6a36f 43 #:use-module (gnu packages logging)
2102ae2e
DC
44 #:use-module (gnu packages m4)
45 #:use-module (gnu packages multiprecision)
87bf526b 46 #:use-module (gnu packages ncurses)
2102ae2e 47 #:use-module (gnu packages nettle)
89e34644 48 #:use-module (gnu packages kerberos)
2102ae2e
DC
49 #:use-module (gnu packages perl)
50 #:use-module (gnu packages pkg-config)
c9a6a36f 51 #:use-module (gnu packages popt)
87bf526b 52 #:autoload (gnu packages protobuf) (protobuf)
ae72b8f5 53 #:use-module (gnu packages python)
2102ae2e
DC
54 #:use-module (gnu packages readline)
55 #:use-module (gnu packages texinfo)
cc2b77df 56 #:use-module (gnu packages tls)
2102ae2e
DC
57 #:use-module (gnu packages xorg)
58 #:use-module (guix build-system cmake)
59 #:use-module (guix build-system gnu)
ae72b8f5 60 #:use-module (guix build-system python)
2fbf053b 61 #:use-module (guix download)
817efe8b 62 #:use-module (guix git-download)
2102ae2e 63 #:use-module ((guix licenses) #:prefix license:)
befbaebf
LC
64 #:use-module (guix packages)
65 #:use-module (srfi srfi-1))
1681cd4a
LC
66
67(define-public libssh
eed00f93
LF
68 (package
69 (name "libssh")
d79c8148 70 (version "0.7.7")
eed00f93
LF
71 (source (origin
72 (method git-fetch)
73 (uri (git-reference
d5401375 74 (url "https://git.libssh.org/projects/libssh.git")
12995856 75 (commit (string-append "libssh-" version))))
eed00f93
LF
76 (patches (search-patches "libssh-hostname-parser-bug.patch"))
77 (sha256
78 (base32
d79c8148 79 "07adxvhmnaq2l7sq7sn4sjlikbm1zdicq8lavq5yfila6jbx9z1y"))
eed00f93
LF
80 (file-name (git-file-name name version))))
81 (build-system cmake-build-system)
82 (outputs '("out" "debug"))
83 (arguments
84 '(#:configure-flags '("-DWITH_GCRYPT=ON")
deed349b 85
eed00f93
LF
86 ;; TODO: Add 'CMockery' and '-DWITH_TESTING=ON' for the test suite.
87 #:tests? #f))
88 (inputs `(("zlib" ,zlib)
89 ("libgcrypt" ,libgcrypt)))
90 (synopsis "SSH client library")
91 (description
92 "libssh is a C library implementing the SSHv2 and SSHv1 protocol for client
93and server implementations. With libssh, you can remotely execute programs,
94transfer files, and use a secure and transparent tunnel for your remote
95applications.")
96 (home-page "https://www.libssh.org")
97 (license license:lgpl2.1+)))
2fbf053b
AE
98
99(define-public libssh2
100 (package
101 (name "libssh2")
5d97f4c7 102 (version "1.8.0")
2fbf053b
AE
103 (source (origin
104 (method url-fetch)
105 (uri (string-append
78d80c5c 106 "https://www.libssh2.org/download/libssh2-"
2fbf053b 107 version ".tar.gz"))
78d80c5c
LF
108 (sha256
109 (base32
ac2d5de3
MB
110 "1m3n8spv79qhjq4yi0wgly5s5rc8783jb1pyra9bkx1md0plxwrr"))
111 (patches
112 (search-patches "libssh2-fix-build-failure-with-gcrypt.patch"))))
2fbf053b 113 (build-system gnu-build-system)
e9c14f37
EB
114 ;; The installed libssh2.pc file does not include paths to libgcrypt and
115 ;; zlib libraries, so we need to propagate the inputs.
116 (propagated-inputs `(("libgcrypt" ,libgcrypt)
117 ("zlib" ,zlib)))
fe365a3d 118 (arguments `(#:configure-flags `("--with-libgcrypt")
e2c7b7bb
MB
119 #:phases (modify-phases %standard-phases
120 (replace 'bootstrap
121 (lambda _
122 (invoke "autoreconf" "-v"))))))
ac2d5de3
MB
123 (native-inputs `(("autoconf" ,autoconf)
124 ("automake" ,automake)))
35b9e423 125 (synopsis "Client-side C library implementing the SSH2 protocol")
2fbf053b
AE
126 (description
127 "libssh2 is a library intended to allow software developers access to
35b9e423 128the SSH-2 protocol in an easy-to-use self-contained package. It can be built
2fbf053b
AE
129into an application to perform many different tasks when communicating with
130a server that supports the SSH-2 protocol.")
131 (license license:bsd-3)
132 (home-page "http://www.libssh2.org/")))
fe0b8a78
AE
133
134(define-public openssh
135 (package
136 (name "openssh")
df71447e 137 (version "7.9p1")
fe0b8a78 138 (source (origin
644e5f17
TGR
139 (method url-fetch)
140 (uri (string-append "mirror://openbsd/OpenSSH/portable/"
141 name "-" version ".tar.gz"))
142 (sha256
143 (base32
df71447e 144 "1b8sy6v0b8v4ggmknwcqx3y1rjcpsll0f1f8f4vyv11x4ni3njvb"))))
fe0b8a78 145 (build-system gnu-build-system)
7d3373a0
LF
146 (native-inputs `(("groff" ,groff)))
147 (inputs `(("openssl" ,openssl)
39012aab 148 ("pam" ,linux-pam)
040b6299 149 ("mit-krb5" ,mit-krb5)
683a4a34
LC
150 ("zlib" ,zlib)
151 ("xauth" ,xauth))) ;for 'ssh -X' and 'ssh -Y'
fe0b8a78
AE
152 (arguments
153 `(#:test-target "tests"
d3552450
LF
154 ;; Otherwise, the test scripts try to use a nonexistent directory and
155 ;; fail.
156 #:make-flags '("REGRESSTMP=\"$${BUILDDIR}/regress\"")
040b6299 157 #:configure-flags `("--sysconfdir=/etc/ssh"
39012aab 158
040b6299 159 ;; Default value of 'PATH' used by sshd.
9af49832
LC
160 "--with-default-path=/run/current-system/profile/bin"
161
040b6299
JD
162 ;; configure needs to find krb5-config
163 ,(string-append "--with-kerberos5="
164 (assoc-ref %build-inputs "mit-krb5")
165 "/bin")
166
39012aab
LC
167 ;; Enable PAM support in sshd.
168 "--with-pam")
169
fe0b8a78 170 #:phases
a9ee11d5
RW
171 (modify-phases %standard-phases
172 (add-after 'configure 'reset-/var/empty
173 (lambda* (#:key outputs #:allow-other-keys)
174 (let ((out (assoc-ref outputs "out")))
175 (substitute* "Makefile"
176 (("PRIVSEP_PATH=/var/empty")
177 (string-append "PRIVSEP_PATH=" out "/var/empty")))
178 #t)))
179 (add-before 'check 'patch-tests
180 (lambda _
181 ;; remove 't-exec' regress target which requires user 'sshd'
182 (substitute* "regress/Makefile"
183 (("^(REGRESS_TARGETS=.*) t-exec(.*)" all pre post)
184 (string-append pre post)))
185 #t))
186 (replace 'install
36f26211 187 (lambda* (#:key outputs (make-flags '()) #:allow-other-keys)
a9ee11d5 188 ;; install without host keys and system configuration files
27b6adb7
MW
189 (apply invoke "make" "install-nosysconf" make-flags)
190 (install-file "contrib/ssh-copy-id"
191 (string-append (assoc-ref outputs "out")
192 "/bin/"))
193 (chmod (string-append (assoc-ref outputs "out")
194 "/bin/ssh-copy-id") #o555)
195 (install-file "contrib/ssh-copy-id.1"
196 (string-append (assoc-ref outputs "out")
197 "/share/man/man1/"))
198 #t)))))
35b9e423 199 (synopsis "Client and server for the secure shell (ssh) protocol")
fe0b8a78
AE
200 (description
201 "The SSH2 protocol implemented in OpenSSH is standardised by the
202IETF secsh working group and is specified in several RFCs and drafts.
203It is composed of three layered components:
204
205The transport layer provides algorithm negotiation and a key exchange.
206The key exchange includes server authentication and results in a
207cryptographically secured connection: it provides integrity, confidentiality
208and optional compression.
209
210The user authentication layer uses the established connection and relies on
35b9e423
EB
211the services provided by the transport layer. It provides several mechanisms
212for user authentication. These include traditional password authentication
fe0b8a78
AE
213as well as public-key or host-based authentication mechanisms.
214
215The connection layer multiplexes many different concurrent channels over the
216authenticated connection and allows tunneling of login sessions and
35b9e423 217TCP-forwarding. It provides a flow control service for these channels.
fe0b8a78 218Additionally, various channel-specific options can be negotiated.")
166191b3 219 (license (license:non-copyleft "file://LICENSE"
fe0b8a78 220 "See LICENSE in the distribution."))
1121a5c6 221 (home-page "https://www.openssh.com/")))
fe0b8a78 222
49d294e5
LC
223(define-public guile-ssh
224 (package
225 (name "guile-ssh")
64bcc76c 226 (version "0.11.3")
6634180f 227 (home-page "https://github.com/artyom-poptsov/guile-ssh")
49d294e5 228 (source (origin
44fd0994
LC
229 ;; ftp://memory-heap.org/software/guile-ssh/guile-ssh-VERSION.tar.gz
230 ;; exists, but the server appears to be too slow and unreliable.
6634180f
LC
231 ;; Also, using this URL allows the GitHub updater to work.
232 (method url-fetch)
233 (uri (string-append home-page "/archive/v"
234 version ".tar.gz"))
235 (file-name (string-append name "-" version ".tar.gz"))
49d294e5
LC
236 (sha256
237 (base32
64bcc76c 238 "1g2jzcg1p25zrkx06j160qb8bgcwa3001ys4q02496xs61pvywqk"))))
49d294e5 239 (build-system gnu-build-system)
74460d11 240 (outputs '("out" "debug"))
49d294e5 241 (arguments
c305ac30
LC
242 '(;; It makes no sense to build libguile-ssh.a.
243 #:configure-flags '("--disable-static")
244
245 #:phases (modify-phases %standard-phases
8a8f6590
LC
246 (add-after 'unpack 'autoreconf
247 (lambda* (#:key inputs #:allow-other-keys)
e7c37ed5 248 (invoke "autoreconf" "-vfi")))
92b72582 249 (add-before 'build 'fix-libguile-ssh-file-name
8a8f6590 250 (lambda* (#:key outputs #:allow-other-keys)
92b72582
LC
251 ;; Build and install libguile-ssh.so so that we can use
252 ;; its absolute file name in .scm files, before we build
253 ;; the .go files.
e7c37ed5
TGR
254 (let* ((out (assoc-ref outputs "out"))
255 (lib (string-append out "/lib")))
256 (invoke "make" "install"
257 "-C" "libguile-ssh"
258 "-j" (number->string
259 (parallel-job-count)))
260 (substitute* (find-files "." "\\.scm$")
261 (("\"libguile-ssh\"")
262 (string-append "\"" lib "/libguile-ssh\"")))
263 #t)))
d0002642
RJ
264 (add-after 'install 'remove-bin-directory
265 (lambda* (#:key outputs #:allow-other-keys)
266 (let* ((out (assoc-ref outputs "out"))
267 (bin (string-append out "/bin"))
268 (examples (string-append
269 out "/share/guile-ssh/examples")))
270 (mkdir-p examples)
271 (rename-file (string-append bin "/ssshd.scm")
272 (string-append examples "/ssshd.scm"))
273 (rename-file (string-append bin "/sssh.scm")
274 (string-append examples "/sssh.scm"))
275 (delete-file-recursively bin)
276 #t))))
afde8da3
LC
277 ;; Tests are not parallel-safe.
278 #:parallel-tests? #f))
49d294e5
LC
279 (native-inputs `(("autoconf" ,autoconf)
280 ("automake" ,automake)
3246cc91 281 ("libtool" ,libtool)
00ee3a71 282 ("texinfo" ,texinfo)
49d294e5
LC
283 ("pkg-config" ,pkg-config)
284 ("which" ,which)))
4d8806c3 285 (inputs `(("guile" ,guile-2.2)
6f9d5b2e 286 ("libssh" ,libssh)
44fd0994 287 ("libgcrypt" ,libgcrypt)))
49d294e5
LC
288 (synopsis "Guile bindings to libssh")
289 (description
290 "Guile-SSH is a library that provides access to the SSH protocol for
291programs written in GNU Guile interpreter. It is a wrapper to the underlying
292libssh library.")
49d294e5 293 (license license:gpl3+)))
513e1950 294
befbaebf 295(define-public guile2.2-ssh
4d8806c3
LC
296 (deprecated-package "guile2.2-ssh" guile-ssh))
297
298(define-public guile2.0-ssh
75c260ba
LC
299 (package
300 (inherit guile-ssh)
4d8806c3
LC
301 (name "guile2.0-ssh")
302 (inputs `(("guile" ,guile-2.0)
75c260ba 303 ,@(alist-delete "guile" (package-inputs guile-ssh))))))
befbaebf 304
513e1950
SHT
305(define-public corkscrew
306 (package
307 (name "corkscrew")
308 (version "2.0")
309 (source
310 (origin
311 (method url-fetch)
040ae44a
TGR
312 ;; The agroman.net domain name expired on 2017-03-23, and the original
313 ;; "http://www.agroman.net/corkscrew/corkscrew-2.0.tar.gz" now returns
314 ;; bogus HTML. Perhaps it will yet return. Until then, use a mirror.
315 (uri (string-append "https://downloads.openwrt.org/sources/"
316 "corkscrew-" version ".tar.gz"))
513e1950
SHT
317 (sha256 (base32
318 "1gmhas4va6gd70i2x2mpxpwpgww6413mji29mg282jms3jscn3qd"))))
319 (build-system gnu-build-system)
320 (arguments
d2656332 321 `(#:phases
91c52629
EF
322 (modify-phases %standard-phases
323 (replace 'configure
5b34f56c
TGR
324 ;; Replace configure phase as the ./configure script does not like
325 ;; CONFIG_SHELL and SHELL passed as parameters
326 (lambda* (#:key outputs build target #:allow-other-keys)
327 (let* ((out (assoc-ref outputs "out"))
328 (bash (which "bash"))
91c52629
EF
329 ;; Set --build and --host flags as the provided config.guess
330 ;; is not able to detect them
5b34f56c 331 (flags `(,(string-append "--prefix=" out)
91c52629
EF
332 ,(string-append "--build=" build)
333 ,(string-append "--host=" (or target build)))))
334 (setenv "CONFIG_SHELL" bash)
5b34f56c 335 (apply invoke bash "./configure" flags))))
81d95a12
TGR
336 (add-after 'install 'install-documentation
337 (lambda* (#:key outputs #:allow-other-keys)
338 (let* ((out (assoc-ref outputs "out"))
d2656332 339 (doc (string-append out "/share/doc/" ,name "-" ,version)))
81d95a12
TGR
340 (install-file "README" doc)
341 #t))))))
513e1950 342 (home-page "http://www.agroman.net/corkscrew")
10c95711 343 (synopsis "SSH tunneling through HTTP(S) proxies")
513e1950 344 (description
10c95711
TGR
345 "Corkscrew tunnels SSH connections through most HTTP and HTTPS proxies.
346Proxy authentication is only supported through the plain-text HTTP basic
347authentication scheme.")
513e1950 348 (license license:gpl2+)))
87bf526b
LC
349
350(define-public mosh
351 (package
352 (name "mosh")
4b8b245b 353 (version "1.3.2")
87bf526b
LC
354 (source (origin
355 (method url-fetch)
c3671282 356 (uri (string-append "https://mosh.org/mosh-" version ".tar.gz"))
87bf526b
LC
357 (sha256
358 (base32
4b8b245b 359 "05hjhlp6lk8yjcy59zywpf0r6s0h0b9zxq0lw66dh9x8vxrhaq6s"))))
87bf526b
LC
360 (build-system gnu-build-system)
361 (arguments
11379192
EF
362 '(#:phases
363 (modify-phases %standard-phases
364 (add-after 'install 'wrap
365 (lambda* (#:key outputs #:allow-other-keys)
366 ;; Make sure 'mosh' can find 'mosh-client' and
367 ;; 'mosh-server'.
368 (let* ((out (assoc-ref outputs "out"))
369 (bin (string-append out "/bin")))
370 (wrap-program (string-append bin "/mosh")
371 `("PATH" ":" prefix (,bin)))))))))
87bf526b
LC
372 (native-inputs
373 `(("pkg-config" ,pkg-config)))
374 (inputs
375 `(("openssl" ,openssl)
376 ("perl" ,perl)
377 ("perl-io-tty" ,perl-io-tty)
378 ("zlib" ,zlib)
379 ("ncurses" ,ncurses)
380 ("protobuf" ,protobuf)
381 ("boost-headers" ,boost)))
c3671282 382 (home-page "https://mosh.org/")
87bf526b
LC
383 (synopsis "Remote shell tolerant to intermittent connectivity")
384 (description
385 "Remote terminal application that allows roaming, supports intermittent
386connectivity, and provides intelligent local echo and line editing of user
387keystrokes. Mosh is a replacement for SSH. It's more robust and responsive,
388especially over Wi-Fi, cellular, and long-distance links.")
389 (license license:gpl3+)))
8c6cfd55 390
c9a6a36f
SR
391(define-public et
392 (package
393 (name "et")
394 (version "3.1.0")
395 (source
396 (origin
397 (method url-fetch)
398 (uri (string-append
399 "https://github.com/MisterTea/EternalTCP/archive/et-v"
400 version ".tar.gz"))
401 (sha256
402 (base32 "1n2w2kqbshdmbb0gz4yizyw9gqfls6qm2dnwx1d9c2hz7hmi7521"))))
403 (build-system cmake-build-system)
404 (arguments `(#:tests? #f))
405 (native-inputs
406 `(("pkg-config" ,pkg-config)))
407 (inputs `(("glog" ,glog)
408 ("gflags" ,gflags)
409 ("libsodium" ,libsodium)
410 ("protobuf" ,protobuf)))
411 (synopsis "Remote shell that automatically reconnects")
412 (description
413 "Eternal Terminal (ET) is a remote shell that automatically reconnects
414without interrupting the session. Unlike SSH sessions, ET sessions will
839ee8d5
TGR
415survive even network outages and IP changes. ET uses a custom protocol over
416TCP, not the SSH protocol.")
c9a6a36f
SR
417 (home-page "https://mistertea.github.io/EternalTCP/")
418 (license license:asl2.0)))
419
8c6cfd55
JD
420(define-public dropbear
421 (package
422 (name "dropbear")
aa08ab38 423 (version "2018.76")
8c6cfd55
JD
424 (source (origin
425 (method url-fetch)
426 (uri (string-append
dec3e015 427 "https://matt.ucc.asn.au/" name "/releases/"
a124bbd2 428 name "-" version ".tar.bz2"))
8a5a1eff 429 (patches (search-patches "dropbear-CVE-2018-15599.patch"))
8c6cfd55 430 (sha256
dec3e015 431 (base32
aa08ab38 432 "0rgavbzw7jrs5wslxm0dnwx2m409yzxd9hazd92r7kx8xikr3yzj"))))
8c6cfd55 433 (build-system gnu-build-system)
aa08ab38 434 (arguments `(#:tests? #f)) ; there is no "make check" or anything similar
8c6cfd55
JD
435 (inputs `(("zlib" ,zlib)))
436 (synopsis "Small SSH server and client")
437 (description "Dropbear is a relatively small SSH server and
35b9e423
EB
438client. It runs on a variety of POSIX-based platforms. Dropbear is
439particularly useful for embedded systems, such as wireless routers.")
8c6cfd55
JD
440 (home-page "https://matt.ucc.asn.au/dropbear/dropbear.html")
441 (license (license:x11-style "" "See file LICENSE."))))
2102ae2e
DC
442
443(define-public liboop
444 (package
445 (name "liboop")
506737f1 446 (version "1.0.1")
2102ae2e
DC
447 (source
448 (origin
449 (method url-fetch)
506737f1
TGR
450 (uri (string-append "http://ftp.lysator.liu.se/pub/liboop/"
451 name "-" version ".tar.gz"))
2102ae2e
DC
452 (sha256
453 (base32
506737f1 454 "1q0p1l72pq9k3bi7a366j2rishv7dzzkg3i6r2npsfg7cnnidbsn"))))
2102ae2e
DC
455 (build-system gnu-build-system)
456 (home-page "http://www.lysator.liu.se/liboop/")
457 (synopsis "Event loop library")
458 (description "Liboop is a low-level event loop management library for
459POSIX-based operating systems. It supports the development of modular,
460multiplexed applications which may respond to events from several sources. It
461replaces the \"select() loop\" and allows the registration of event handlers
462for file and network I/O, timers and signals. Since processes use these
463mechanisms for almost all external communication, liboop can be used as the
464basis for almost any application.")
465 (license license:lgpl2.1+)))
466
467(define-public lsh
468 (package
469 (name "lsh")
470 (version "2.1")
471 (source (origin
472 (method url-fetch)
473 (uri (string-append "mirror://gnu/lsh/lsh-"
474 version ".tar.gz"))
475 (sha256
476 (base32
477 "1qqjy9zfzgny0rkb27c8c7dfsylvb6n0ld8h3an2r83pmaqr9gwb"))
478 (modules '((guix build utils)))
479 (snippet
480 '(begin
481 (substitute* "src/testsuite/functions.sh"
482 (("localhost")
483 ;; Avoid host name lookups since they don't work in
484 ;; chroot builds.
485 "127.0.0.1")
486 (("set -e")
487 ;; Make tests more verbose.
488 "set -e\nset -x"))
489
490 (substitute* (find-files "src/testsuite" "-test$")
491 (("localhost") "127.0.0.1"))
492
493 (substitute* "src/testsuite/login-auth-test"
6cbee49d
MW
494 (("/bin/cat") "cat"))
495 #t))))
2102ae2e
DC
496 (build-system gnu-build-system)
497 (native-inputs
498 `(("m4" ,m4)
499 ("guile" ,guile-2.0)
500 ("gperf" ,gperf)
501 ("psmisc" ,psmisc))) ; for `killall'
502 (inputs
503 `(("nettle" ,nettle-2)
504 ("linux-pam" ,linux-pam)
505
506 ;; 'rl.c' uses the 'CPPFunction' type, which is no longer in
507 ;; Readline 6.3.
508 ("readline" ,readline-6.2)
509
510 ("liboop" ,liboop)
511 ("zlib" ,zlib)
512 ("gmp" ,gmp)
513
514 ;; The server (lshd) invokes xauth when X11 forwarding is requested.
515 ;; This adds 24 MiB (or 27%) to the closure of lsh.
516 ("xauth" ,xauth)))
517 (arguments
518 '(;; Skip the `configure' test that checks whether /dev/ptmx &
519 ;; co. work as expected, because it relies on impurities (for
520 ;; instance, /dev/pts may be unavailable in chroots.)
d5c969ce
LC
521 #:configure-flags '("lsh_cv_sys_unix98_ptys=yes"
522
523 ;; Use glibc's argp rather than the bundled one.
524 "--with-system-argp"
525
526 ;; 'lsh_argp.h' checks HAVE_ARGP_PARSE but nothing
527 ;; defines it.
528 "CPPFLAGS=-DHAVE_ARGP_PARSE")
2102ae2e
DC
529
530 ;; FIXME: Tests won't run in a chroot, presumably because
531 ;; /etc/profile is missing, and thus clients get an empty $PATH
532 ;; and nothing works.
533 #:tests? #f
534
535 #:phases
536 (modify-phases %standard-phases
537 (add-before 'configure 'pre-configure
538 (lambda* (#:key inputs #:allow-other-keys)
539 (let* ((nettle (assoc-ref inputs "nettle"))
540 (sexp-conv (string-append nettle "/bin/sexp-conv")))
d5c969ce
LC
541 ;; Remove argp from the list of sub-directories; we don't want
542 ;; to build it, really.
543 (substitute* "src/Makefile.in"
544 (("^SUBDIRS = argp")
545 "SUBDIRS ="))
546
2102ae2e
DC
547 ;; Make sure 'lsh' and 'lshd' pick 'sexp-conv' in the right place
548 ;; by default.
549 (substitute* "src/environ.h.in"
550 (("^#define PATH_SEXP_CONV.*")
551 (string-append "#define PATH_SEXP_CONV \""
552 sexp-conv "\"\n")))
553
554 ;; Same for the 'lsh-authorize' script.
555 (substitute* "src/lsh-authorize"
556 (("=sexp-conv")
557 (string-append "=" sexp-conv)))
558
559 ;; Tell lshd where 'xauth' lives. Another option would be to
560 ;; hardcode "/run/current-system/profile/bin/xauth", thereby
561 ;; reducing the closure size, but that wouldn't work on foreign
562 ;; distros.
563 (with-fluids ((%default-port-encoding "ISO-8859-1"))
564 (substitute* "src/server_x11.c"
565 (("define XAUTH_PROGRAM.*")
566 (string-append "define XAUTH_PROGRAM \""
567 (assoc-ref inputs "xauth")
568 "/bin/xauth\"\n")))))
569
570 ;; Tests rely on $USER being set.
571 (setenv "USER" "guix"))))))
572 (home-page "http://www.lysator.liu.se/~nisse/lsh/")
573 (synopsis "GNU implementation of the Secure Shell (ssh) protocols")
574 (description
575 "GNU lsh is a free implementation of the SSH version 2 protocol. It is
576used to create a secure line of communication between two computers,
577providing shell access to the server system from the client. It provides
578both the server daemon and the client application, as well as tools for
579manipulating key files.")
580 (license license:gpl2+)))
c777570b
NG
581
582(define-public sshpass
583 (package
584 (name "sshpass")
585 (version "1.06")
586 (synopsis "Non-interactive password authentication with SSH")
587 (home-page "https://sourceforge.net/projects/sshpass/")
588 (source
589 (origin
590 (method url-fetch)
591 (uri (string-append "mirror://sourceforge/sshpass/sshpass/"
592 version "/sshpass-" version ".tar.gz"))
593 (sha256
594 (base32
595 "0q7fblaczb7kwbsz0gdy9267z0sllzgmf0c7z5c9mf88wv74ycn6"))))
596 (build-system gnu-build-system)
597 (description "sshpass is a tool for non-interactivly performing password
598authentication with SSH's so-called @dfn{interactive keyboard password
599authentication}.")
600 (license license:gpl2+)))
8caeb117
CAW
601
602(define-public autossh
603 (package
604 (name "autossh")
5660325e 605 (version "1.4f")
8caeb117
CAW
606 (source
607 (origin
608 (method url-fetch)
609 (uri (string-append
610 "http://www.harding.motd.ca/autossh/autossh-"
611 version ".tgz"))
612 (sha256
5660325e 613 (base32 "1wpqwa2872nqgqbhnb6nnkrlzpdawd5k69gh1qp68354pvhyawh1"))))
8caeb117
CAW
614 (build-system gnu-build-system)
615 (arguments `(#:tests? #f)) ; There is no "make check" or anything similar
616 (inputs `(("openssh" ,openssh)))
617 (synopsis "Automatically restart SSH sessions and tunnels")
618 (description "autossh is a program to start a copy of @command{ssh} and
619monitor it, restarting it as necessary should it die or stop passing traffic.")
620 (home-page "http://www.harding.motd.ca/autossh/")
621 (license
622 ;; Why point to a source file? Well, all the individual files have a
623 ;; copy of this license in their headers, but there's no separate file
624 ;; with that information.
625 (license:non-copyleft "file://autossh.c"))))
227dbd84
RW
626
627(define-public pdsh
628 (package
629 (name "pdsh")
b982fb1c 630 (version "2.33")
227dbd84
RW
631 (source
632 (origin
633 (method url-fetch)
b982fb1c 634 (uri (string-append "https://github.com/chaos/pdsh/"
635 "releases/download/pdsh-" version
636 "/pdsh-" version ".tar.gz"))
637 (file-name (string-append name "-" version ".tar.gz"))
227dbd84 638 (sha256
b982fb1c 639 (base32 "0bwlkl9inj66iwvafg00pi3sk9n673phdi0kcc59y9nn55s0hs3k"))))
227dbd84
RW
640 (build-system gnu-build-system)
641 (arguments
642 `(#:configure-flags
643 (list "--with-ssh")
644 #:phases
645 (modify-phases %standard-phases
646 (add-after 'unpack 'patch-/bin/sh
647 (lambda _
b982fb1c 648 (substitute* '("tests/t0006-pdcp.sh"
649 "tests/t0004-module-loading.sh"
650 "tests/t2001-ssh.sh"
651 "tests/t1003-slurm.sh"
652 "tests/t6036-long-output-lines.sh"
653 "tests/aggregate-results.sh"
654 "tests/t2000-exec.sh"
655 "tests/t0002-internal.sh"
656 "tests/t1002-dshgroup.sh"
657 "tests/t5000-dshbak.sh"
658 "tests/t0001-basic.sh"
659 "tests/t0005-rcmd_type-and-user.sh"
227dbd84 660 "tests/test-lib.sh"
b982fb1c 661 "tests/t2002-mrsh.sh"
662 "tests/t0003-wcoll.sh"
227dbd84
RW
663 "tests/test-modules/pcptest.c")
664 (("/bin/sh") (which "bash")))
b982fb1c 665 #t))
666 (add-after 'unpack 'patch-tests
667 (lambda _
668 (substitute* "tests/t6036-long-output-lines.sh"
669 (("which") (which "which")))
227dbd84
RW
670 #t)))))
671 (inputs
672 `(("openssh" ,openssh)
673 ("mit-krb5" ,mit-krb5)
674 ("perl" ,perl)))
b982fb1c 675 (native-inputs
676 `(("which" ,which)))
677 (home-page "https://github.com/chaos/pdsh")
227dbd84
RW
678 (synopsis "Parallel distributed shell")
679 (description "Pdsh is a an efficient, multithreaded remote shell client
680which executes commands on multiple remote hosts in parallel. Pdsh implements
681dynamically loadable modules for extended functionality such as new remote
682shell services and remote host selection.")
683 (license license:gpl2+)))
ae72b8f5
MG
684
685(define-public clustershell
686 (package
687 (name "clustershell")
688 (version "1.8")
689 (source
690 (origin
691 (method url-fetch)
692 (uri (string-append "https://github.com/cea-hpc/clustershell/archive/v"
693 version
694 ".tar.gz"))
695 (sha256
696 (base32 "1qyf6zp5ikk8rk7zvx5ssbgr9si2bqv3a3415590kd07s7i16nmd"))
697 (file-name (string-append name "-" version ".tar.gz"))))
698 (build-system python-build-system)
699 (inputs `(("openssh" ,openssh)))
700 (propagated-inputs `(("python-pyyaml" ,python-pyyaml)))
701 (arguments
702 `(#:phases (modify-phases %standard-phases
703 (add-before 'build 'record-openssh-file-name
704 (lambda* (#:key inputs #:allow-other-keys)
705 (let ((ssh (assoc-ref inputs "openssh")))
706 (substitute* "lib/ClusterShell/Worker/Ssh.py"
707 (("info\\(\"ssh_path\"\\) or \"ssh\"")
708 (string-append "info(\"ssh_path\") or \""
709 ssh "/bin/ssh\"")))
710 #t))))))
711 (home-page "https://cea-hpc.github.io/clustershell/")
712 (synopsis "Scalable event-driven Python framework for cluster administration")
713 (description
714 "ClusterShell is an event-driven Python framework, designed to run local
715or distant commands in parallel on server farms or on large GNU/Linux
716clusters. It will take care of common issues encountered on HPC clusters,
717such as operating on groups of nodes, running distributed commands using
718optimized execution algorithms, as well as gathering results and merging
719identical outputs, or retrieving return codes. ClusterShell takes advantage
720of existing remote shell facilities such as SSH.")
721 (license license:lgpl2.1+)))