diff options
author | Mark H Weaver <mhw@netris.org> | 2019-04-21 00:19:39 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2019-04-22 15:02:16 -0400 |
commit | fa61900705ced88b058e2b49d9a8cc3ae3ba907e (patch) | |
tree | 316298cb2aceafff8bb5e78a0f96d5a6a01eddb7 /gnu/packages/ssh.scm | |
parent | 8c064d01a011f145a6d962ef6bde78247389fac2 (diff) | |
download | guix-fa61900705ced88b058e2b49d9a8cc3ae3ba907e.tar.gz |
gnu: openssh: Update to 8.0p1.
* gnu/packages/ssh.scm (openssh): Update to 8.0p1. [source]: Remove patch. * gnu/packages/patches/openssh-CVE-2018-20685.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Remove it.
Diffstat (limited to 'gnu/packages/ssh.scm')
-rw-r--r-- | gnu/packages/ssh.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 83a831660d..e887cd7e70 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -164,15 +164,14 @@ a server that supports the SSH-2 protocol.") (define-public openssh (package (name "openssh") - (version "7.9p1") + (version "8.0p1") (source (origin (method url-fetch) (uri (string-append "mirror://openbsd/OpenSSH/portable/" name "-" version ".tar.gz")) - (patches (search-patches "openssh-CVE-2018-20685.patch")) (sha256 (base32 - "1b8sy6v0b8v4ggmknwcqx3y1rjcpsll0f1f8f4vyv11x4ni3njvb")))) + "0s7xh4s0qcipnjh9ls5blxcpvhyd116z9dxn3q1yi64lwrwki55x")))) (build-system gnu-build-system) (native-inputs `(("groff" ,groff) ("pkg-config" ,pkg-config))) |