tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
openssh: drop dsaKeysSupport
Morgan Jones
10 months ago
5792aff1
2b75b132
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
openssh
common.nix
-2
pkgs/tools/networking/openssh/common.nix
···
38
38
withPAM ? stdenv.hostPlatform.isLinux,
39
39
# Attempts to mlock the entire sshd process on startup to prevent swapping.
40
40
withLinuxMemlock ? stdenv.hostPlatform.isLinux,
41
41
-
dsaKeysSupport ? false,
42
41
linkOpenssl ? true,
43
42
isNixos ? stdenv.hostPlatform.isLinux,
44
43
}:
···
108
107
"--with-libedit=yes"
109
108
"--disable-strip"
110
109
(lib.withFeature withPAM "pam")
111
111
-
(lib.enableFeature dsaKeysSupport "dsa-keys")
112
110
]
113
111
++ lib.optional (etcDir != null) "--sysconfdir=${etcDir}"
114
112
++ lib.optional (!withSecurityKey) "--disable-security-key"