diff options
author | Leo Famulari <leo@famulari.name> | 2016-04-15 13:56:34 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-04-17 13:48:31 -0400 |
commit | 67157996e23f1d6135659d91c1a15e3ac4afd4e0 (patch) | |
tree | 619513fe220b157bc4f874168835bd437df49b08 /gnu/packages/ssh.scm | |
parent | a7d94b54c7c505f5cf9a2691f5340ae3d2acda9e (diff) | |
download | guix-67157996e23f1d6135659d91c1a15e3ac4afd4e0.tar.gz |
gnu: openssh: Fix CVE-2015-8325.
* gnu/packages/patches/openssh-CVE-2015-8325.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/ssh.scm (openssh): Use it.
Diffstat (limited to 'gnu/packages/ssh.scm')
-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 eaf57acb3d..b8f107b111 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -126,7 +126,8 @@ a server that supports the SSH-2 protocol.") (string-append "http://ftp2.fr.openbsd.org/pub/OpenBSD/OpenSSH/portable/" tail)))) (sha256 (base32 - "132lh9aanb0wkisji1d6cmsxi520m8nh7c7i9wi6m1s3l38q29x7")))) + "132lh9aanb0wkisji1d6cmsxi520m8nh7c7i9wi6m1s3l38q29x7")) + (patches (search-patches "openssh-CVE-2015-8325.patch")))) (build-system gnu-build-system) (inputs `(("groff" ,groff) ("openssl" ,openssl) |