3
0
Fork 0
forked from mirrors/nixpkgs

openssh_hpn: pin to openssl 1.0.2

The HPN patchset doesn't yet support OpenSSL1.1. There is a potential
patch available but that seems to break during runtime [1].

[1] https://github.com/rapier1/openssh-portable/issues/14
This commit is contained in:
Andreas Rammhold 2019-03-07 00:21:13 +01:00 committed by Robin Gloster
parent b300c7fe28
commit d9e72321c7
No known key found for this signature in database
GPG key ID: D5C458DF6DD97EDF

View file

@ -5142,7 +5142,12 @@ in
pam = if stdenv.isLinux then pam else null;
};
openssh_hpn = pkgs.appendToName "with-hpn" (openssh.override { hpnSupport = true; });
openssh_hpn = pkgs.appendToName "with-hpn" (openssh.override {
hpnSupport = true;
# the hpn patchset does not yet support openssl>1.0.2
# https://github.com/rapier1/openssh-portable/issues/14
openssl = openssl_1_0_2;
});
openssh_gssapi = pkgs.appendToName "with-gssapi" (openssh.override {
withGssapiPatches = true;