diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2024-06-18 11:54:43 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:08 +0200 |
commit | 52ad897f160c8967ee4590674744d88f53a57965 (patch) | |
tree | 315a35a54837640b6a248d4fe3da764800018515 | |
parent | 4a3bf9f60d03894e9c9655a3f22bcf56c55733e2 (diff) | |
download | guix-52ad897f160c8967ee4590674744d88f53a57965.tar.gz guix-52ad897f160c8967ee4590674744d88f53a57965.zip |
gnu: lsh: Add libxcrypt dependency.
* gnu/packages/ssh.scm (lsh)[inputs]: Add libxcrypt.
Change-Id: Ic67704e2a60d4e2fe7397204570efca4493c88fe
-rw-r--r-- | gnu/packages/ssh.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index be765474ba..9d3fe1f40a 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -622,7 +622,8 @@ basis for almost any application.") ;; The server (lshd) invokes xauth when X11 forwarding is requested. ;; This adds 24 MiB (or 27%) to the closure of lsh. xauth - libxau)) ;also required for x11-forwarding + libxau ;also required for x11-forwarding + libxcrypt)) (arguments '(;; Skip the `configure' test that checks whether /dev/ptmx & ;; co. work as expected, because it relies on impurities (for |