~ruther/guix-local

43edd273531e11170c00af395550f57f4815a95a — Allan Adair 9 months ago fceafe2
gnu: libssh2: Update to 1.11.1.

* gnu/packages/ssh.scm (libssh2): Update to 1.11.1.
[propagated-inputs]: Remove libgcrypt; add openssl.
[arguments]: Update #:configure-flags.

As per issue https://issues.guix.gnu.org/77154

Closes guix/guix#3349

Change-Id: I109af6a6d42e9e703d0f4e2fd24c0b865d1ceb8f
Modified-by: Cayetano Santos <csantosb@inventati.org>
Signed-off-by: Cayetano Santos <csantosb@inventati.org>
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
1 files changed, 7 insertions(+), 6 deletions(-)

M gnu/packages/ssh.scm
M gnu/packages/ssh.scm => gnu/packages/ssh.scm +7 -6
@@ 199,7 199,7 @@ applications.")
(define-public libssh2
  (package
   (name "libssh2")
   (version "1.10.0")
   (version "1.11.1")
   (source (origin
            (method url-fetch)
            (uri (string-append


@@ 207,14 207,15 @@ applications.")
                   version ".tar.gz"))
            (sha256
             (base32
              "0l8xwhhscvss7q007vpbkbv7jh9s43579rx2sf8lnfgd7l7yjr1d"))))
              "1xsqysmrq40gdfjndd1yrcvwic16kn4jrzir6pn8xfadwg5pdv6r"))))
   (build-system gnu-build-system)
   ;; The installed libssh2.pc file does not include paths to libgcrypt and
   ;; The installed libssh2.pc file does not include paths to openssl and
   ;; zlib libraries, so we need to propagate the inputs.
   (propagated-inputs (list libgcrypt zlib))
   (propagated-inputs (list openssl zlib))
   (arguments
    (list #:configure-flags #~'("--with-libgcrypt"
                                "--disable-static")))
    (list #:configure-flags #~'("--with-crypto=openssl"
                                "--disable-static"
                                "--disable-docker-tests")))
   (synopsis "Client-side C library implementing the SSH2 protocol")
   (description
    "libssh2 is a library intended to allow software developers access to