Merge pull request #168536 from thequux/add-sctp-support-to-iperf3
iperf3: Add support for SCTP
This commit is contained in:
commit
dfc7a39803
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, fetchurl, openssl, fetchpatch }:
|
||||
{ lib, stdenv, fetchurl, openssl, fetchpatch, lksctp-tools }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "iperf";
|
||||
|
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "0pvy1cj92phpbldw0bdc0ds70n8irqcyn1ybyis0a6nnz84v936y";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl ];
|
||||
buildInputs = [ openssl lksctp-tools ];
|
||||
configureFlags = [
|
||||
"--with-openssl=${openssl.dev}"
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue