Skip to content

Commit

Permalink
iperf3: fix compilation to support authentication creds
Browse files Browse the repository at this point in the history
Service iperf3 defines authorizedUsersFile and rsaPrivateKey to
enable authenticated iperf server. It requires iperf to be compiled
with openssl.

https://nixos.org/nixos/options.html#services.iperf3.authorizedusersfile
(cherry picked from commit eabc138)
  • Loading branch information
Frostman authored and infinisil committed Jan 17, 2020
1 parent 5abac3c commit 692a8ca
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkgs/tools/networking/iperf/3.nix
Expand Up @@ -9,6 +9,9 @@ stdenv.mkDerivation rec {
};

buildInputs = [ openssl ];
configureFlags = [
"--with-openssl=${openssl.dev}"
];

outputs = [ "out" "man" ];

Expand Down

0 comments on commit 692a8ca

Please sign in to comment.