guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: Add openssh-sans-x.


From: guix-commits
Subject: 01/02: gnu: Add openssh-sans-x.
Date: Mon, 8 Jun 2020 05:22:18 -0400 (EDT)

mothacehe pushed a commit to branch master
in repository guix.

commit 65c8512f9c709a85766e0e1cb8eee12459a3d705
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Sat Jun 6 11:10:34 2020 +0200

    gnu: Add openssh-sans-x.
    
    * gnu/packages/ssh.scm (openssh-sans-x): New variable.
---
 gnu/packages/ssh.scm | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index 73841db..43764a8 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -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")



reply via email to

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