gnu: libssh: Switch from libgcrypt to openssl.

libgcrypt support has been deprecated by the libssh maintainers (see:
https://gitlab.com/libssh/libssh-mirror/-/blob/master/CMakeLists.txt?ref_type=heads#L53).

* gnu/packages/ssh.scm (libssh) [configure-flags]: Remove -DWITH_GCRYPT=ON.
[inputs]: Replace libgcrypt with openssh.

Change-Id: I8d220ade1019847879e4df35dec833aebb0dabfe
This commit is contained in:
Maxim Cournoyer 2025-04-26 11:15:53 +09:00
parent 9acef235e1
commit a6dde24bff
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -161,8 +161,7 @@ file names.
(arguments (arguments
(list (list
#:configure-flags #:configure-flags
#~(list "-DWITH_GCRYPT=ON" #~(list #$@(if (%current-target-system)
#$@(if (%current-target-system)
#~() #~()
#~("-DUNIT_TESTING=ON")) #~("-DUNIT_TESTING=ON"))
#$@(if (and (%current-target-system) #$@(if (and (%current-target-system)
@ -191,7 +190,7 @@ file names.
(lambda _ (lambda _
(setenv "HOME" "/")))))) (setenv "HOME" "/"))))))
(native-inputs (list cmocka)) (native-inputs (list cmocka))
(inputs (list bash-minimal mit-krb5 libgcrypt zlib)) (inputs (list bash-minimal mit-krb5 openssl zlib))
(synopsis "SSH client library") (synopsis "SSH client library")
(description (description
"libssh is a C library implementing the SSHv2 and SSHv1 protocol for client "libssh is a C library implementing the SSHv2 and SSHv1 protocol for client