diff options
author | Lars-Dominik Braun <ldb@leibniz-psychology.org> | 2020-02-19 11:13:15 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-02-20 11:14:39 +0100 |
commit | ef30ddb2c28cd3304b7f78d8782369b5807676f2 (patch) | |
tree | 90965eefb8c5b5726c3776f22588c54ed841c766 | |
parent | 7ff86ecae1253035b6894bb5c21ee6d40b181889 (diff) | |
download | patches-ef30ddb2c28cd3304b7f78d8782369b5807676f2.tar patches-ef30ddb2c28cd3304b7f78d8782369b5807676f2.tar.gz |
gnu: Add Kerberos support to libssh
* gnu/packages/ssh.scm (libssh)[inputs]: Depend on mit-krb5
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-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 72b7c745f9..fdb3450e01 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -90,7 +90,8 @@ ;; TODO: Add 'CMockery' and '-DWITH_TESTING=ON' for the test suite. #:tests? #f)) (inputs `(("zlib" ,zlib) - ("libgcrypt" ,libgcrypt))) + ("libgcrypt" ,libgcrypt) + ("mit-krb5" ,mit-krb5))) (synopsis "SSH client library") (description "libssh is a C library implementing the SSHv2 and SSHv1 protocol for client |