openssh: 6.9p1 -> 7.1p2

This commit is contained in:
koral
2016-02-01 16:31:43 +01:00
committed by Eelco Dolstra
parent 4d0e732168
commit a7f09e9773
3 changed files with 3 additions and 119 deletions
+3 -3
View File
@@ -23,11 +23,11 @@ let
in
with stdenv.lib;
stdenv.mkDerivation rec {
name = "openssh-6.9p1";
name = "openssh-7.1p2";
src = fetchurl {
url = "mirror://openbsd/OpenSSH/portable/${name}.tar.gz";
sha256 = "1zkci5nbpb4frmzj2vr3kv9j47x2h72kvybcpr0d8mzk73sls1vf";
sha256 = "1gbbvszz74lkc7b2mqr3ccgpm65zj0k5h7a2ssh0c7pjvhjg0xfx";
};
prePatch = optionalString hpnSupport
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
export NIX_LDFLAGS="$NIX_LDFLAGS -lgcc_s"
'';
patches = [ ./locale_archive.patch ./openssh-6.9p1-security-7.0.patch ./disable-roaming.patch ]
patches = [ ./locale_archive.patch ]
++ optional withGssapiPatches gssapiSrc;
buildInputs = [ zlib openssl libedit pkgconfig pam ]