diff options
| author | Marius Bakke <mbakke@fastmail.com> | 2019-04-08 00:54:01 +0200 |
|---|---|---|
| committer | Marius Bakke <mbakke@fastmail.com> | 2019-04-08 00:54:01 +0200 |
| commit | ba00235a9652bb129ff6867ffc3c7cfafe1cca09 (patch) | |
| tree | 1ce56f512707e89362e1fed3d5b26d690462fbda /gnu/packages/ssh.scm | |
| parent | f19ccdc62ca721b68745c35b046826b356f46c62 (diff) | |
| parent | 0e2b0b05accdea7c3f016f8483d0ec04021114d3 (diff) | |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/ssh.scm')
| -rw-r--r-- | gnu/packages/ssh.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index abbc0dad8..83a831660 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -143,6 +143,24 @@ a server that supports the SSH-2 protocol.") (license license:bsd-3) (home-page "https://www.libssh2.org/"))) +;; XXX A hidden special obsolete libssh2 for temporary use in the curl package. +;; <https://bugs.gnu.org/34927> +(define-public libssh2-1.8.0 + (hidden-package + (package + (inherit libssh2) + (version "1.8.0") + (source (origin + (method url-fetch) + (uri (string-append + "https://www.libssh2.org/download/libssh2-" + version ".tar.gz")) + (sha256 + (base32 + "1m3n8spv79qhjq4yi0wgly5s5rc8783jb1pyra9bkx1md0plxwrr")) + (patches + (search-patches "libssh2-fix-build-failure-with-gcrypt.patch"))))))) + (define-public openssh (package (name "openssh") |