mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
iperf3: fix darwin build
lksctp-tools is linux only
This commit is contained in:
parent
0a9c88ab30
commit
3c18b8109f
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "0pvy1cj92phpbldw0bdc0ds70n8irqcyn1ybyis0a6nnz84v936y";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl lksctp-tools ];
|
||||
buildInputs = [ openssl ] ++ lib.optionals stdenv.isLinux [ lksctp-tools ];
|
||||
configureFlags = [
|
||||
"--with-openssl=${openssl.dev}"
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue