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:
parent
b300c7fe28
commit
d9e72321c7
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue