me
/
guix
Archived
1
0
Fork 0

gnu: Add openssh-sans-x.

* gnu/packages/ssh.scm (openssh-sans-x): New variable.
master
Mathieu Othacehe 2020-06-06 11:10:34 +02:00
parent 173d22a1c0
commit 65c8512f9c
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 9 additions and 0 deletions

View File

@ -239,6 +239,15 @@ Additionally, various channel-specific options can be negotiated.")
"See LICENSE in the distribution."))
(home-page "https://www.openssh.com/")))
;; OpenSSH without X support. This allows to use OpenSSH without dragging X
;; libraries to the closure.
(define-public openssh-sans-x
(package
(inherit openssh)
(name "openssh-sans-x")
(inputs (alist-delete "xauth" (package-inputs openssh)))
(synopsis "OpenSSH client and server without X11 support")))
(define-public guile-ssh
(package
(name "guile-ssh")